mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Start creating Dictionary-based internal models
This commit is contained in:
27
SabreTools.Models/Internal/Dump.cs
Normal file
27
SabreTools.Models/Internal/Dump.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System.Xml.Serialization;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace SabreTools.Models.Internal
|
||||
{
|
||||
[JsonObject("dump"), XmlRoot("dump")]
|
||||
public class Dump : DatItem
|
||||
{
|
||||
#region Keys
|
||||
|
||||
/// <remarks>Rom</remarks>
|
||||
public const string MegaRomKey = "megarom";
|
||||
|
||||
/// <remarks>Original</remarks>
|
||||
public const string OriginalKey = "original";
|
||||
|
||||
/// <remarks>Rom</remarks>
|
||||
public const string RomKey = "rom";
|
||||
|
||||
/// <remarks>Rom</remarks>
|
||||
public const string SCCPlusCartKey = "sccpluscart";
|
||||
|
||||
#endregion
|
||||
|
||||
public Dump() => Type = ItemType.Dump;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user