using System.Xml.Serialization;
using Newtonsoft.Json;
using SabreTools.Core;
namespace SabreTools.DatItems.Formats
{
///
/// Represents one part feature object
///
[JsonObject("part_feature"), XmlRoot("part_feature")]
public sealed class PartFeature : DatItem
{
#region Constants
///
/// Non-standard key for inverted logic
///
public const string PartKey = "PART";
#endregion
#region Fields
/// />
protected override ItemType ItemType => ItemType.PartFeature;
/// />
protected override string? NameKey => Models.Metadata.Feature.NameKey;
#endregion
#region Constructors
public PartFeature() : base() { }
public PartFeature(Models.Metadata.Feature item) : base(item) { }
#endregion
}
}