using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.Listxml
{
[XmlRoot("feature")]
public class Feature
{
/// (protection|timing|graphics|palette|sound|capture|camera|microphone|controls|keyboard|mouse|media|disk|printer|tape|punch|drum|rom|comms|lan|wan)
[XmlAttribute("type")]
public string Type { get; set; }
/// (unemulated|imperfect)
[XmlAttribute("status")]
public string? Status { get; set; }
/// (unemulated|imperfect)
[XmlAttribute("overall")]
public string? Overall { get; set; }
}
}