mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-22 05:48:08 +00:00
8 lines
177 B
Swift
8 lines
177 B
Swift
import Foundation
|
|
|
|
public struct Mention: Codable, Equatable, Hashable {
|
|
public let id: String
|
|
public let username: String
|
|
public let url: URL
|
|
public let acct: String
|
|
}
|