mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-14 02:02:57 +00:00
19 lines
452 B
C#
19 lines
452 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("blank"), XmlRoot("blank")]
|
|
public class Blank : DatItem, ICloneable, IEquatable<Blank>
|
|
{
|
|
public Blank() => ItemType = ItemType.Blank;
|
|
|
|
/// <inheritdoc/>
|
|
public object Clone() => new Blank();
|
|
|
|
/// <inheritdoc/>
|
|
public bool Equals(Blank? other) => other is not null;
|
|
}
|
|
}
|