Start creating Dictionary-based internal models

This commit is contained in:
Matt Nadareski
2023-08-01 23:18:53 -04:00
parent 8a56f8fd11
commit 7d4d69bbb8
55 changed files with 1613 additions and 39 deletions

View File

@@ -0,0 +1,24 @@
using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.Models.Internal
{
[JsonObject("biosset"), XmlRoot("biosset")]
public class BiosSet : DatItem
{
#region Keys
/// <remarks>bool</remarks>
public const string DefaultKey = "default";
/// <remarks>string</remarks>
public const string DescriptionKey = "description";
/// <remarks>string</remarks>
public const string NameKey = "name";
#endregion
public BiosSet() => Type = ItemType.BiosSet;
}
}