namespace XRTool.Util
{
///
/// 存储语言的信息,语音的路径(相对路径)
///
public class LanguageConf
{
private string priKey;
private string message;
private string audioPath;
///
/// 文字的主键
///
public string PriKey { get => priKey; set => priKey = value; }
///
/// 文字的内容
///
public string Message { get => message; set => message = value; }
///
/// 对应的配音路径
///
public string AudioPath { get => audioPath; set => audioPath = value; }
}
}