IceCubesApp/Packages/Models/Sources/Models/StatusHistory.swift

14 lines
275 B
Swift
Raw Normal View History

2023-01-19 20:19:19 +00:00
import Foundation
public struct StatusHistory: Decodable, Identifiable {
public var id: String {
2023-02-09 08:12:44 +00:00
createdAt.asDate.description
2023-01-19 20:19:19 +00:00
}
2023-01-22 05:38:30 +00:00
2023-01-19 20:19:19 +00:00
public let content: HTMLString
public let createdAt: ServerDate
public let emojis: [Emoji]
}
extension StatusHistory: Sendable {}