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
@@ -1,16 +1,15 @@
namespace fxl.codes.kisekae.data.Entities
{
public class Configuration
{
public int Id { get; set; }
public string Name { get; set; }
public Kisekae Kisekae { get; set; }
public List<CelConfig> Cels { get; set; } = new();
public List<Action> Actions { get; set; } = new();
namespace fxl.codes.kisekae.data.Entities;
public string Data { get; set; }
public int Height { get; set; }
public int Width { get; set; }
public string BackgroundColorHex { get; set; }
}
public class Configuration
{
public int Id { get; set; }
public string Name { get; set; }
public Kisekae Kisekae { get; set; }
public List<CelConfig> Cels { get; set; } = new();
public List<Action> Actions { get; set; } = new();
public string Data { get; set; }
public int Height { get; set; }
public int Width { get; set; }
public string BackgroundColorHex { get; set; }
}