Files
SabreTools/SabreTools.Models/Internal/BiosSet.cs
2023-08-01 23:18:53 -04:00

25 lines
560 B
C#

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;
}
}