7 lines
143 B
C#
7 lines
143 B
C#
|
namespace Tiger.Game.Figuredata;
|
||
|
|
||
|
public class Palette
|
||
|
{
|
||
|
public int Id { get; set; }
|
||
|
public List<Color> Colors { get; set; } = new();
|
||
|
}
|