mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-16 19:23:04 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
32 lines
712 B
C#
32 lines
712 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("dump"), XmlRoot("dump")]
|
|
public class Dump : DatItem
|
|
{
|
|
#region Keys
|
|
|
|
/// <remarks>Rom</remarks>
|
|
[NoFilter]
|
|
public const string MegaRomKey = "megarom";
|
|
|
|
/// <remarks>Original</remarks>
|
|
[NoFilter]
|
|
public const string OriginalKey = "original";
|
|
|
|
/// <remarks>Rom</remarks>
|
|
[NoFilter]
|
|
public const string RomKey = "rom";
|
|
|
|
/// <remarks>Rom</remarks>
|
|
[NoFilter]
|
|
public const string SCCPlusCartKey = "sccpluscart";
|
|
|
|
#endregion
|
|
|
|
public Dump() => Type = ItemType.Dump;
|
|
}
|
|
}
|