11 lines
277 B
Swift
11 lines
277 B
Swift
// PR 7 — GET /admin/api/server-info. Used by ServerScreen to render the
|
|
// API Endpoints CodeChips and (later) by the Welcome wizard.
|
|
|
|
import Foundation
|
|
|
|
struct ServerInfoDTO: Codable, Equatable, Sendable {
|
|
let host: String
|
|
let port: Int
|
|
let aliases: [String]
|
|
}
|