Start adding currently-unused models

This commit is contained in:
Matt Nadareski
2023-07-11 23:39:54 -04:00
parent 18cb67a610
commit 3770b260c4
49 changed files with 1281 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
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; }
}
}