using System;
|
|
namespace ZigBee.Common
|
{
|
public sealed class RemoteOperatorConsts
|
{
|
/// <summary>
|
/// 操作成功
|
/// </summary>
|
public const string SUCCESS = "Success";
|
|
/// <summary>
|
/// 操作成功:高兄版本成功
|
/// </summary>
|
public const string SUCCESS_UPPER = "SUCCESS";
|
|
/// <summary>
|
/// 参数有误
|
/// </summary>
|
public const string PARAMETER_OR_EMPTY = "ParameterOrEmpty";
|
|
/// <summary>
|
/// 以ZigbeeApp_开头
|
/// </summary>
|
public const string ZIGBEE_APP_UNDER_STARTS_WITH = "ZigbeeApp_";
|
|
/// <summary>
|
/// 连接云端Mqtt成功后,响应的主题名称
|
/// </summary>
|
public const string ZIGBEE_APP_CONNECT_MQTT_BROKER_SUCCESS = "/ZigbeeAppConnectMqttBrokerSuccess";
|
|
/// <summary>
|
/// 以ZigbeeApp开头
|
/// </summary>
|
public const string ZIGBEE_APP_STARTS_WITH = "ZigbeeApp";
|
|
|
/// <summary>
|
/// 帽号
|
/// </summary>
|
public const char CAP_NUMBER = ':';
|
|
}
|
}
|