Add some more models (nw)

This commit is contained in:
Matt Nadareski
2023-07-12 09:27:18 -04:00
parent 3770b260c4
commit f491edb9be
27 changed files with 577 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.OpenMSX
{
[XmlRoot("software")]
public class Software
{
[XmlElement("title")]
public string Title { get; set; }
[XmlElement("genmsxid")]
public string? GenMSXID { get; set; }
[XmlElement("system")]
public string System { get; set; }
[XmlElement("company")]
public string Company { get; set; }
[XmlElement("year")]
public string Year { get; set; }
[XmlElement("country")]
public string Country { get; set; }
[XmlElement("dump")]
public Dump[]? Dump { get; set; }
}
}