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