Storing in DB now

This commit is contained in:
Lani Aung
2021-10-18 22:50:28 -06:00
parent 372d0ad86a
commit 804ccd0eeb
9 changed files with 161 additions and 17 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Collections.Generic;
namespace fxl.codes.kisekae.Entities
{
public class KisekaeDto
{
public int Id { get; set; }
public string Name { get; set; }
public string Filename { get; set; }
public string Checksum { get; set; }
public IEnumerable<CelDto> Cels { get; set; }
}
}