mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
19 lines
368 B
C#
19 lines
368 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Models.Internal
|
|
{
|
|
[JsonObject("sound"), XmlRoot("sound")]
|
|
public class Sound : DatItem
|
|
{
|
|
#region Keys
|
|
|
|
/// <remarks>long</remarks>
|
|
public const string ChannelsKey = "channels";
|
|
|
|
#endregion
|
|
|
|
public Sound() => Type = ItemType.Sound;
|
|
}
|
|
}
|