IceCubesApp/Packages/Models/Sources/Models/Instance.swift
2022-12-04 09:50:25 +01:00

19 lines
431 B
Swift

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?
}