Saving to DB, need to render

This commit is contained in:
Lani Aung
2021-11-02 18:33:07 -06:00
parent d52cc4b206
commit 16dfc040a4
18 changed files with 318 additions and 212 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
using Dapper.Contrib.Extensions;
using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities
{
@@ -6,7 +6,7 @@ namespace fxl.codes.kisekae.Entities
public class CelDto : IKisekaeFile, IKisekaeParseable
{
public int Id { get; set; }
public int KisekaeId { get; set; }
[Column("kisekae_id")] public int KisekaeId { get; set; }
public string Filename { get; set; }
public byte[] Data { get; set; }
}