using System; using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Data.Models.Metadata { [JsonObject("blank"), XmlRoot("blank")] public class Blank : DatItem, ICloneable, IEquatable { public Blank() => ItemType = ItemType.Blank; /// public object Clone() => new Blank(); /// public bool Equals(Blank? other) => other is not null; } }