Converting to EF, need to work on TS
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace fxl.codes.kisekae.Entities
|
||||
{
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user