namespace Chrono.Model; public class DeckData { public string Name { get; init; } = ""; public List Cards { get; init; } = []; public List Keycards { get; init; } = []; public List Divers { get; init; } = []; public string? Description { get; init; } public List Factions { get; init; } = []; public bool IsVisible { get; init; } }