Parse 12 vs 24 bit colors eventually

This commit is contained in:
Lani Aung
2021-10-02 19:18:58 -06:00
parent 66ccf83051
commit 4b4fffdbf1
15 changed files with 1447 additions and 29 deletions
+26
View File
@@ -0,0 +1,26 @@
using System.Collections.Generic;
namespace fxl.codes.kisekae.Models
{
public class DirectoryModel
{
public string Name { get; }
public DirectoryModel(string name)
{
Name = name;
}
public List<ConfigurationModel> Configurations { get; } = new();
}
public class ConfigurationModel
{
public string Name { get; }
public ConfigurationModel(string name)
{
Name = name;
}
}
}