You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.3 KiB
29 lines
1.3 KiB
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"));
|
|
}
|
|
}
|