namespace Tiger.Game.Figuredata; public class Set { public int Club { get; set; } public bool Colorable { get; set; } public string Gender { get; set; } = null!; public int Id { get; set; } public bool Preselectable { get; set; } public bool Selectable { get; set; } public bool Sellable { get; set; } public List Parts { get; set; } = new(); }