using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.DatItems.Formats { /// /// Represents a condition on a machine or other item /// [JsonObject("condition"), XmlRoot("condition")] public sealed class Condition : DatItem { #region Fields /// /> protected override ItemType ItemType => ItemType.Condition; /// /> protected override string? NameKey => null; #endregion #region Constructors public Condition() : base() { } public Condition(Models.Metadata.Condition item) : base(item) { } #endregion } }