mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
28 lines
575 B
C#
28 lines
575 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("biosset"), XmlRoot("biosset")]
|
|
public class BiosSet : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public string? Name { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Keys
|
|
|
|
/// <remarks>bool</remarks>
|
|
public const string DefaultKey = "default";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string DescriptionKey = "description";
|
|
|
|
#endregion
|
|
|
|
public BiosSet() => ItemType = ItemType.BiosSet;
|
|
}
|
|
}
|