mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 05:39:42 +00:00
18 lines
337 B
C#
18 lines
337 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("sound"), XmlRoot("sound")]
|
|
public class Sound : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public long? Channels { get; set; }
|
|
|
|
#endregion
|
|
|
|
public Sound() => ItemType = ItemType.Sound;
|
|
}
|
|
}
|