mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-18 20:23:05 +00:00
19 lines
391 B
C#
19 lines
391 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("extension"), XmlRoot("extension")]
|
|
public class Extension : DatItem
|
|
{
|
|
#region Keys
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string NameKey = "name";
|
|
|
|
#endregion
|
|
|
|
public Extension() => ItemType = ItemType.Extension;
|
|
}
|
|
}
|