7 lines
175 B
C#
7 lines
175 B
C#
|
namespace Tiger.Game.Figuredata;
|
||
|
|
||
|
public class Figuredata
|
||
|
{
|
||
|
public List<Palette> Palettes { get; set; } = new();
|
||
|
public List<SetType> SetTypes { get; set; } = new();
|
||
|
}
|