mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 21:59:47 +00:00
18 lines
355 B
C#
18 lines
355 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("extension"), XmlRoot("extension")]
|
|
public class Extension : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public string? Name { get; set; }
|
|
|
|
#endregion
|
|
|
|
public Extension() => ItemType = ItemType.Extension;
|
|
}
|
|
}
|