IceCubesApp/Packages/Models/Sources/Models/Mention.swift

11 lines
209 B
Swift
Raw Normal View History

2022-12-19 14:51:25 +00:00
import Foundation
2023-01-22 15:55:03 +00:00
public struct Mention: Codable, Equatable, Hashable {
2022-12-19 14:51:25 +00:00
public let id: String
public let username: String
public let url: URL
public let acct: String
}
extension Mention: Sendable {}