mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
28 lines
631 B
C#
28 lines
631 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.DatItems.Formats
|
|
{
|
|
/// <summary>
|
|
/// Represents one shared feature object
|
|
/// </summary>
|
|
[JsonObject("sharedfeat"), XmlRoot("sharedfeat")]
|
|
public sealed class SharedFeat : DatItem<Models.Metadata.SharedFeat>
|
|
{
|
|
#region Fields
|
|
|
|
/// <inheritdoc>/>
|
|
protected override ItemType ItemType => ItemType.SharedFeat;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public SharedFeat() : base() { }
|
|
|
|
public SharedFeat(Models.Metadata.SharedFeat item) : base(item) { }
|
|
|
|
#endregion
|
|
}
|
|
}
|