Schafkopf-Server/Sources/App/Infos/CardInfo.swift

11 lines
182 B
Swift
Raw Normal View History

2021-11-30 11:55:13 +01:00
import Foundation
struct CardInfo: Codable {
/// The cards for a player
let cards: [CardId]
/// Indicates if the card can be played
let playable: [Bool]
}