Reusable db stuff??

This commit is contained in:
Lani Aung
2024-09-15 21:59:05 -06:00
parent 009efc4643
commit c805414cab
28 changed files with 71 additions and 32 deletions
@@ -0,0 +1,18 @@
namespace fxl.codes.kisekae.data.Entities
{
public class CelConfig
{
public int Id { get; set; }
public Cel Cel { get; set; }
public Configuration Configuration { get; set; }
public int Mark { get; set; }
public int Fix { get; set; }
public Palette Palette { get; set; }
public int PaletteGroup { get; set; }
public string Comment { get; set; }
public int Transparency { get; set; }
public Render Render { get; set; }
public List<CelPosition> Positions { get; set; } = new();
public bool[] Sets { get; set; } = new bool[10];
}
}