mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-26 15:02:39 +01:00
17 lines
393 B
Swift
17 lines
393 B
Swift
import Foundation
|
|
|
|
public struct InstanceSocial: Decodable, Identifiable, Sendable {
|
|
public struct Info: Decodable, Sendable {
|
|
public let shortDescription: String?
|
|
}
|
|
|
|
public let id: String
|
|
public let name: String
|
|
public let dead: Bool
|
|
public let users: String
|
|
public let activeUsers: Int?
|
|
public let statuses: String
|
|
public let thumbnail: URL?
|
|
public let info: Info?
|
|
}
|