namespace XiaoZhiSharp.MQTT.Common
{
///
/// 信息载体
///
public class ResultMqtt
{
///
/// 结果Code
/// 正常1,其他为异常;0不作为回复结果
///
public int ResultCode { get; set; } = 0;
///
/// 结果信息
///
public string ResultMsg { get; set; } = string.Empty;
///
/// 扩展1
///
public object ResultObject1 { get; set; } = string.Empty;
///
/// 扩展2
///
public object ResultObject2 { get; set; } = string.Empty;
}
}