WIP, thinking about converting to EF

This commit is contained in:
Lani Aung
2021-11-18 21:24:20 -07:00
parent fd8858aab3
commit 1fd14ebafd
20 changed files with 1513 additions and 179 deletions
+13
View File
@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities
{
[Table("cel_render")]
public class CelRenderDto
{
public int Id { get; set; }
[Column("cel_id")] public int CelId { get; set; }
[Column("palette_id")] public int PaletteId { get; set; }
public byte[] Data { get; set; }
}
}