Promote Configuration

This commit is contained in:
Matt Nadareski
2020-09-01 11:55:11 -07:00
parent 4204cf8457
commit ca66e07986
8 changed files with 448 additions and 272 deletions

View File

@@ -41,32 +41,6 @@ namespace SabreTools.Library.DatItems
public string Value { get; set; }
}
/// <summary>
/// Represents one ListXML configuration
/// </summary>
/// TODO: Promote to DatItem level (contains lists)
[JsonObject("configuration")]
public class ListXmlConfiguration
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("tag")]
public string Tag { get; set; }
[JsonProperty("mask")]
public string Mask { get; set; }
[JsonProperty("conditions")]
public List<ListXmlCondition> Conditions { get; set; }
[JsonProperty("locations")]
public List<ListXmlConfLocation> Locations { get; set; }
[JsonProperty("settings")]
public List<ListXmlConfSetting> Settings { get; set; }
}
/// <summary>
/// Represents one ListXML conflocation
/// </summary>