2025-09-26 10:20:48 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.SoftwareList
|
2025-09-26 10:20:48 -04:00
|
|
|
{
|
|
|
|
|
[XmlRoot("part")]
|
|
|
|
|
public class Part
|
|
|
|
|
{
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlAttribute("name")]
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlAttribute("interface")]
|
|
|
|
|
public string? Interface { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("feature")]
|
|
|
|
|
public Feature[]? Feature { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("dataarea")]
|
|
|
|
|
public DataArea[]? DataArea { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("diskarea")]
|
|
|
|
|
public DiskArea[]? DiskArea { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("dipswitch")]
|
|
|
|
|
public DipSwitch[]? DipSwitch { get; set; }
|
|
|
|
|
}
|
2026-01-27 12:03:01 -05:00
|
|
|
}
|