using System.Collections.Generic; namespace fxl.codes.kisekae.Entities { public class Palette { public int Id { get; set; } public Kisekae Kisekae { get; set; } public string FileName { get; set; } public string Comment { get; set; } public List Colors { get; set; } = new(); public byte[] Data { get; set; } } }