Converting to EF, need to work on TS
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace fxl.codes.kisekae.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();
|
||||
|
||||
public string Data { get; set; }
|
||||
public int Height { get; set; }
|
||||
public int Width { get; set; }
|
||||
public int BorderIndex { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user