2026-04-02 15:49:06 -04:00
|
|
|
using System;
|
2025-09-26 10:20:48 -04:00
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.Metadata
|
2025-09-26 10:20:48 -04:00
|
|
|
{
|
|
|
|
|
[JsonObject("blank"), XmlRoot("blank")]
|
2026-04-02 16:07:34 -04:00
|
|
|
public class Blank : DatItem, ICloneable, IEquatable<Blank>
|
2025-09-26 10:20:48 -04:00
|
|
|
{
|
2026-04-01 11:24:33 -04:00
|
|
|
public Blank() => ItemType = ItemType.Blank;
|
2026-04-02 15:49:06 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public object Clone() => new Blank();
|
2026-04-02 16:07:34 -04:00
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public bool Equals(Blank? other) => other is not null;
|
2025-09-26 10:20:48 -04:00
|
|
|
}
|
|
|
|
|
}
|