Cleanup usings, promote PartFeature

This commit is contained in:
Matt Nadareski
2020-09-03 13:20:56 -07:00
parent 10de9f3430
commit 5d01d4ab51
15 changed files with 268 additions and 24 deletions

View File

@@ -4,9 +4,9 @@ using System.Linq;
using SabreTools.Library.DatItems;
using SabreTools.Library.Filtering;
using SabreTools.Library.Tools;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using SabreTools.Library.Tools;
/// <summary>
/// This holds all of the auxiliary types needed for proper parsing
@@ -103,20 +103,6 @@ namespace SabreTools.Library.DatItems
public List<PartFeature> Features { get; set; }
}
/// <summary>
/// Represents one SoftwareList feature object
/// </summary>
/// TODO: Promote this to DatItem
[JsonObject("part_feature")]
public class PartFeature
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("value")]
public string Value { get; set; }
}
#endregion
#endregion //DatItem