using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.DatItems.Formats { /// /// Represents which SoftwareList(s) is associated with a set /// [JsonObject("softwarelist"), XmlRoot("softwarelist")] public sealed class SoftwareList : DatItem { #region Fields /// /> protected override ItemType ItemType => ItemType.SoftwareList; /// /> protected override string? NameKey => Models.Metadata.SoftwareList.NameKey; #endregion #region Constructors public SoftwareList() : base() { } public SoftwareList(Models.Metadata.SoftwareList item) : base(item) { } #endregion } }