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