using System; namespace EC.AutoWeightServer.Model.Config { public class VoiceConfig : BaseConfig { public static string InStartHint { get; } = GetVoiceConfig("InStartHint"); public static string InStartHint2 { get; } = GetVoiceConfig("InStartHint2"); public static string InStartHelp { get; } = GetVoiceConfig("InStartHelp"); public static string InStableWeightHelp { get; } = GetVoiceConfig("InStableWeightHelp"); public static string InFinishHint { get; } = GetVoiceConfig("InFinishHint"); public static string InFinishHint2 { get; } = GetVoiceConfig("InFinishHint2"); public static string InFinishHelp { get; } = GetVoiceConfig("InFinishHelp"); public static string OutStartHint { get; } = GetVoiceConfig("OutStartHint"); public static string OutStartHint2 { get; } = GetVoiceConfig("OutStartHint2"); public static string OutStartHelp { get; } = GetVoiceConfig("OutStartHelp"); public static string OutStableWeightHelp { get; } = GetVoiceConfig("OutStableWeightHelp"); public static string OutFinishHint { get; } = GetVoiceConfig("OutFinishHint"); public static string OutFinishHint2 { get; } = GetVoiceConfig("OutFinishHint2"); public static string OutFinishHelp { get; } = GetVoiceConfig("OutFinishHelp"); public static int HintInterval { get; } = FormatCom.ToInt(GetVoiceConfig("HintInterval")); } }