2023-07-14 00:39:22 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.Logiqx
|
|
|
|
|
{
|
|
|
|
|
[XmlRoot("softwarelist")]
|
2023-07-30 22:59:04 -04:00
|
|
|
public class SoftwareList
|
2023-07-14 00:39:22 -04:00
|
|
|
{
|
|
|
|
|
[XmlAttribute("tag")]
|
|
|
|
|
public string Tag { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("name")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>(original|compatible)</remarks>
|
|
|
|
|
[XmlAttribute("status")]
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("filter")]
|
|
|
|
|
public string? Filter { get; set; }
|
2023-07-30 22:59:04 -04:00
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
[XmlAnyAttribute]
|
|
|
|
|
public XmlAttribute[]? ADDITIONAL_ATTRIBUTES { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
[XmlAnyElement]
|
|
|
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-07-14 00:39:22 -04:00
|
|
|
}
|
|
|
|
|
}
|