Files
SabreTools/SabreTools.Models/SoftwareList/SoftwareList.cs
2023-07-11 23:39:54 -04:00

21 lines
484 B
C#

using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.SoftwareList
{
[XmlRoot("softwarelist")]
public class SoftwareList
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("description")]
public string? Description { get; set; }
[XmlElement("notes")]
public string? Notes { get; set; }
[XmlElement("software")]
public Software[] Software { get; set; }
}
}