mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-15 19:56:36 +00:00
d1209e6704
Co-authored-by: Jim Dovey <jimdovey@apple.com>
10 lines
209 B
Swift
10 lines
209 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
|
|
}
|
|
|
|
extension Mention: Sendable {}
|