9 lines
105 B
Swift
9 lines
105 B
Swift
import Foundation
|
|
|
|
struct CardInfo: Codable, Equatable {
|
|
|
|
let card: CardId
|
|
|
|
let playable: Bool
|
|
}
|