using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.DatItems.Formats { /// /// Represents special information about a machine /// [JsonObject("info"), XmlRoot("info")] public sealed class Info : DatItem { #region Fields /// /> protected override ItemType ItemType => ItemType.Info; #endregion #region Constructors public Info() : base() { } public Info(Models.Metadata.Info item) : base(item) { } #endregion } }