mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-18 14:31:01 +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
|
|
}
|