Schafkopf-Server/Sources/App/Infos/TableInfo.swift
2021-11-30 11:55:13 +01:00

20 lines
286 B
Swift

import Foundation
struct TableInfo: Codable {
let id: String
let name: String
var players: [PlayerName]
var connected: [Bool]
}
extension TableInfo: Comparable {
static func < (lhs: TableInfo, rhs: TableInfo) -> Bool {
lhs.name < rhs.name
}
}