mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
30 lines
675 B
C#
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
|
|
}
|
|
}
|