TigerEmu/Game/Figuredata/Color.cs

10 lines
247 B
C#
Raw Normal View History

namespace Tiger.Game.Figuredata;
public class Color
{
public int Id { get; set; }
public int Index { get; set; }
public int Club { get; set; }
public bool Selectable { get; set; }
public string HexCode { get; set; } = null!;
}