mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-03-06 02:11:02 +00:00
13 lines
275 B
Swift
13 lines
275 B
Swift
import Foundation
|
|
|
|
public struct StatusHistory: Decodable, Identifiable {
|
|
public var id: String {
|
|
createdAt.asDate.description
|
|
}
|
|
|
|
public let content: HTMLString
|
|
public let createdAt: ServerDate
|
|
public let emojis: [Emoji]
|
|
}
|
|
|
|
extension StatusHistory: Sendable {}
|