Working a bit

This commit is contained in:
Lani Aung
2021-10-02 15:18:07 -06:00
parent 16599f7df3
commit 66ccf83051
13 changed files with 260 additions and 65 deletions
+21
View File
@@ -0,0 +1,21 @@
using System.Collections.Generic;
namespace fxl.codes.kisekae.Models
{
public class ConfigurationModel
{
private readonly string _originalDirectory;
public ConfigurationModel(string originalDirectory)
{
_originalDirectory = originalDirectory;
}
public int Height { get; set; }
public int Width { get; set; }
public int BorderColorIndex { get; set; }
public List<PaletteModel> Palettes { get; } = new();
public List<CelModel> Cels { get; } = new();
}
}