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
+3 -3
View File
@@ -1,5 +1,5 @@
using System.Collections.Generic;
using Dapper.Contrib.Extensions;
using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities
{
@@ -7,8 +7,8 @@ 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 Name { get; init; }
public string Filename { get; init; }
public string Checksum { get; set; }
public IEnumerable<ConfigurationDto> Configurations { get; set; }
}