mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-13 01:33:11 +00:00
15 lines
291 B
C#
15 lines
291 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Data.Models.Listxml
|
|
{
|
|
[XmlRoot("sound")]
|
|
public class Sound
|
|
{
|
|
/// <remarks>Numeric</remarks>
|
|
[Required]
|
|
[XmlAttribute("channels")]
|
|
public long? Channels { get; set; }
|
|
}
|
|
}
|