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.
27 lines
554 B
C#
27 lines
554 B
C#
namespace RoBot.Core.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";
|
|
}
|
|
|
|
public class RedisPrefix
|
|
{
|
|
public const string GoodsKey = "GoodsInfo";
|
|
|
|
}
|
|
}
|