using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.DatItems.Formats
{
///
/// Represents a (usually WAV-formatted) sample to be included for use in the set
///
[JsonObject("sample"), XmlRoot("sample")]
public class Sample : DatItem
{
#region Fields
/// />
protected override ItemType ItemType => ItemType.Sample;
/// />
protected override string? NameKey => Models.Metadata.Sample.NameKey;
#endregion
#region Constructors
public Sample() : base() { }
public Sample(Models.Metadata.Sample item) : base(item) { }
#endregion
}
}