using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Data.Models.SoftwareList
{
[XmlRoot("disk")]
public class Disk
{
[Required]
[XmlAttribute("name")]
public string? Name { get; set; }
[XmlAttribute("md5")]
public string? MD5 { get; set; }
[XmlAttribute("sha1")]
public string? SHA1 { get; set; }
/// (baddump|nodump|good) "good"
[XmlAttribute("status")]
public string? Status { get; set; }
/// (yes|no) "no"
[XmlAttribute("writable")]
public string? Writeable { get; set; }
}
}