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

11 lines
182 B
Swift

import Foundation
struct CardInfo: Codable {
/// The cards for a player
let cards: [CardId]
/// Indicates if the card can be played
let playable: [Bool]
}