mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 13:49:42 +00:00
12 lines
244 B
C#
12 lines
244 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("blank"), XmlRoot("blank")]
|
|
public class Blank : DatItem
|
|
{
|
|
public Blank() => ItemType = ItemType.Blank;
|
|
}
|
|
}
|