using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// WdkAiotDeviceIotUpsertResponse. /// public class WdkAiotDeviceIotUpsertResponse : TopResponse { /// /// 返回数据 /// [XmlElement("data")] public string Data { get; set; } /// /// 错误码 /// [XmlElement("msg_code")] public string MsgCode { get; set; } /// /// 错误信息 /// [XmlElement("msg_info")] public string MsgInfo { get; set; } /// /// 返回结果 /// [XmlElement("succeed")] public bool Succeed { get; set; } } }