Schafkopf-Server/Sources/App/Model/Table.swift

18 lines
251 B
Swift
Raw Normal View History

2021-11-27 11:59:13 +01:00
import Foundation
struct TableInfo: Codable {
let id: String
let name: String
var players: [String]
}
extension TableInfo: Comparable {
static func < (lhs: TableInfo, rhs: TableInfo) -> Bool {
lhs.name < rhs.name
}
}