using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipaySiteprobeDeviceInfoAddResponse. /// public class AlipaySiteprobeDeviceInfoAddResponse : AopResponse { /// /// 返回码 /// [XmlElement("code")] public string Code { get; set; } /// /// 设备ID /// [XmlElement("device_id")] public string DeviceId { get; set; } /// /// 返回码描述 /// [XmlElement("msg")] public string Msg { get; set; } } }