mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-02-02 19:47:19 +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?
|
|
}
|