mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
40 lines
994 B
C#
40 lines
994 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Models.SoftwareList
|
|
{
|
|
[XmlRoot("software")]
|
|
public class Software
|
|
{
|
|
[XmlAttribute("name")]
|
|
public string Name { get; set; }
|
|
|
|
[XmlAttribute("cloneof")]
|
|
public string? CloneOf { get; set; }
|
|
|
|
/// <remarks>(yes|partial|no) "yes"</remarks>
|
|
[XmlAttribute("supported")]
|
|
public string? Supported { get; set; }
|
|
|
|
[XmlElement("description")]
|
|
public string Description { get; set; }
|
|
|
|
[XmlElement("year")]
|
|
public string Year { get; set; }
|
|
|
|
[XmlElement("publisher")]
|
|
public string Publisher { get; set; }
|
|
|
|
[XmlElement("notes")]
|
|
public string? Notes { get; set; }
|
|
|
|
[XmlElement("info")]
|
|
public Info[]? Info { get; set; }
|
|
|
|
[XmlElement("sharedfeat")]
|
|
public SharedFeat[]? SharedFeat { get; set; }
|
|
|
|
[XmlElement("part")]
|
|
public Part[]? Part { get; set; }
|
|
}
|
|
} |