IceCubesApp/Packages/Models/Sources/Models/Instance.swift

19 lines
431 B
Swift
Raw Normal View History

2022-12-04 08:50:25 +00:00
import Foundation
public struct Instance: Codable {
public struct Stats: Codable {
public let userCount: Int
public let statusCount: Int
public let domainCount: Int
}
public let title: String
public let shortDescription: String
public let email: String
public let version: String
public let stats: Stats
public let languages: [String]
public let registrations: Bool
public let thumbnail: URL?
}