using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipaySiteprobeWifiUnconnectResponse. /// public class AlipaySiteprobeWifiUnconnectResponse : AopResponse { /// /// 请求响应码 /// [XmlElement("code")] public string Code { get; set; } /// /// 请求响应描述 /// [XmlElement("msg")] public string Msg { get; set; } } }