Files
SabreTools/SabreTools.DatItems/Formats/Sound.cs
2024-07-17 15:46:42 -04:00

30 lines
675 B
C#

using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.DatItems.Formats
{
/// <summary>
/// Represents the sound output for a machine
/// </summary>
[JsonObject("sound"), XmlRoot("sound")]
public sealed class Sound : DatItem<Models.Metadata.Sound>
{
#region Fields
/// <inheritdoc>/>
protected override ItemType ItemType => ItemType.Sound;
/// <inheritdoc>/>
protected override string? NameKey => null;
#endregion
#region Constructors
public Sound() : base() { }
public Sound(Models.Metadata.Sound item) : base(item) { }
#endregion
}
}