mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
31 lines
712 B
C#
31 lines
712 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
using SabreTools.Core;
|
|
|
|
namespace SabreTools.DatItems.Formats
|
|
{
|
|
/// <summary>
|
|
/// Represents the a feature of the machine
|
|
/// </summary>
|
|
[JsonObject("feature"), XmlRoot("feature")]
|
|
public sealed class Feature : DatItem<Models.Metadata.Feature>
|
|
{
|
|
#region Fields
|
|
|
|
/// <inheritdoc>/>
|
|
protected override ItemType ItemType => ItemType.Feature;
|
|
|
|
/// <inheritdoc>/>
|
|
protected override string? NameKey => null;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public Feature() : base() { }
|
|
public Feature(Models.Metadata.Feature item) : base(item) { }
|
|
|
|
#endregion
|
|
}
|
|
}
|