2023-08-01 23:18:53 -04:00
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.Internal
|
|
|
|
|
{
|
|
|
|
|
[JsonObject("dump"), XmlRoot("dump")]
|
|
|
|
|
public class Dump : DatItem
|
|
|
|
|
{
|
|
|
|
|
#region Keys
|
|
|
|
|
|
|
|
|
|
/// <remarks>Rom</remarks>
|
2023-08-11 11:29:25 -04:00
|
|
|
[NoFilter]
|
2023-08-01 23:18:53 -04:00
|
|
|
public const string MegaRomKey = "megarom";
|
|
|
|
|
|
|
|
|
|
/// <remarks>Original</remarks>
|
2023-08-11 11:29:25 -04:00
|
|
|
[NoFilter]
|
2023-08-01 23:18:53 -04:00
|
|
|
public const string OriginalKey = "original";
|
|
|
|
|
|
|
|
|
|
/// <remarks>Rom</remarks>
|
2023-08-11 11:29:25 -04:00
|
|
|
[NoFilter]
|
2023-08-01 23:18:53 -04:00
|
|
|
public const string RomKey = "rom";
|
|
|
|
|
|
|
|
|
|
/// <remarks>Rom</remarks>
|
2023-08-11 11:29:25 -04:00
|
|
|
[NoFilter]
|
2023-08-01 23:18:53 -04:00
|
|
|
public const string SCCPlusCartKey = "sccpluscart";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public Dump() => Type = ItemType.Dump;
|
|
|
|
|
}
|
|
|
|
|
}
|