mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
23 lines
481 B
C#
23 lines
481 B
C#
|
|
using System.Xml.Serialization;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace SabreTools.Models.Metadata
|
||
|
|
{
|
||
|
|
[JsonObject("diskarea"), XmlRoot("diskarea")]
|
||
|
|
public class DiskArea : DatItem
|
||
|
|
{
|
||
|
|
#region Keys
|
||
|
|
|
||
|
|
/// <remarks>Disk[]</remarks>
|
||
|
|
[NoFilter]
|
||
|
|
public const string DiskKey = "disk";
|
||
|
|
|
||
|
|
/// <remarks>string</remarks>
|
||
|
|
public const string NameKey = "name";
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
public DiskArea() => Type = ItemType.DiskArea;
|
||
|
|
}
|
||
|
|
}
|