mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2025-02-15 10:12:41 +01:00
43 lines
825 B
C#
43 lines
825 B
C#
using System.IO;
|
|
using SonicAudioLib.CriMw.Serialization;
|
|
|
|
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CsbBuilder
|
|
{
|
|
[Serializable]
|
|
[CriSerializable("TBLVLG")]
|
|
public class CriTableVoiceLimitGroup
|
|
{
|
|
private string _vlgname = string.Empty;
|
|
private uint _vlgnvoice = 0;
|
|
|
|
[CriField("vlgname", 0)]
|
|
public string VoiceLimitGroupName
|
|
{
|
|
get
|
|
{
|
|
return _vlgname;
|
|
}
|
|
set
|
|
{
|
|
_vlgname = value;
|
|
}
|
|
}
|
|
|
|
[CriField("vlgnvoice", 1)]
|
|
public uint VoiceLimitGroupNum
|
|
{
|
|
get
|
|
{
|
|
return _vlgnvoice;
|
|
}
|
|
set
|
|
{
|
|
_vlgnvoice = value;
|
|
}
|
|
}
|
|
}
|
|
}
|