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
+13
View File
@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities
{
[Table("palette_color")]
public class PaletteColorDto
{
public int Id { get; set; }
[Column("palette_id")] public int PaletteId { get; set; }
public int Group { get; set; }
public string Hex { get; set; }
}
}