You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
460 B
C#

namespace RoBot.Start.ConstValue
{
public class Consts
{
/// <summary>
/// 登录文件
/// </summary>
public const string KeystoreConfig = "keystore.json";
/// <summary>
/// 设备信息
/// </summary>
public const string DeviceConfig = "device.json";
/// <summary>
/// 配置文件
/// </summary>
public const string Config = "config.json";
}
}