using System; using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Data.Models.Metadata { [JsonObject("conflocation"), XmlRoot("conflocation")] public class ConfLocation : DatItem, ICloneable, IEquatable { #region Properties /// (yes|no) "no" public bool? Inverted { get; set; } public string? Name { get; set; } public long? Number { get; set; } #endregion public ConfLocation() => ItemType = ItemType.ConfLocation; /// public object Clone() { var obj = new ConfLocation(); obj.Inverted = Inverted; obj.Name = Name; obj.Number = Number; return obj; } /// public bool Equals(ConfLocation? other) { // Null never matches if (other is null) return false; // Properties if (Inverted != other.Inverted) return false; if ((Name is null) ^ (other.Name is null)) return false; else if (Name is not null && !Name.Equals(other.Name, StringComparison.OrdinalIgnoreCase)) return false; if (Number != other.Number) return false; return true; } } }