14 lines
387 B
C#
14 lines
387 B
C#
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<PaletteColor> Colors { get; set; } = new();
|
|
public byte[] Data { get; set; }
|
|
}
|
|
} |