mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-05-10 00:34:45 +00:00
10 lines
225 B
Swift
10 lines
225 B
Swift
import Foundation
|
|
|
|
public struct StatusContext: Decodable {
|
|
public let ancestors: [Status]
|
|
public let descendants: [Status]
|
|
|
|
public static func empty() -> StatusContext {
|
|
.init(ancestors: [], descendants: [])
|
|
}
|
|
}
|