Promote Feature

This commit is contained in:
Matt Nadareski
2020-09-02 13:31:50 -07:00
parent 07cf2135ff
commit 3d55e1462b
11 changed files with 317 additions and 107 deletions

View File

@@ -193,23 +193,6 @@ namespace SabreTools.Library.DatItems
public string Name { get; set; }
}
/// <summary>
/// Represents one ListXML feature
/// </summary>
/// TODO: Promote to DatItem level
[JsonObject("feature")]
public class Feature
{
[JsonProperty("type")]
public string Type { get; set; } // TODO: (protection|palette|graphics|sound|controls|keyboard|mouse|microphone|camera|disk|printer|lan|wan|timing)
[JsonProperty("status")]
public string Status { get; set; } // TODO: (unemulated|imperfect)
[JsonProperty("overall")]
public string Overall { get; set; } // TODO: (unemulated|imperfect)
}
/// <summary>
/// Represents one ListXML input
/// </summary>