Still largely works surprisingly

This commit is contained in:
Lani Aung
2026-07-08 21:55:42 -07:00
parent 094f3abbff
commit c0e15d60b9
11 changed files with 81 additions and 94 deletions
+9 -10
View File
@@ -1,12 +1,11 @@
namespace fxl.codes.kisekae.data.Entities
namespace fxl.codes.kisekae.data.Entities;
public class Kisekae
{
public class Kisekae
{
public int Id { get; set; }
public string FileName { get; set; }
public string CheckSum { get; set; }
public List<Configuration> Configurations { get; set; } = new();
public List<Cel> Cels { get; set; } = new();
public List<Palette> Palettes { get; set; } = new();
}
public int Id { get; set; }
public string FileName { get; set; }
public string CheckSum { get; set; }
public List<Configuration> Configurations { get; set; } = new();
public List<Cel> Cels { get; set; } = new();
public List<Palette> Palettes { get; set; } = new();
}