using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobilePublicQrcodeCreateResponse. /// public class AlipayMobilePublicQrcodeCreateResponse : AopResponse { /// /// 返回结果码,如200,标识成功 /// [XmlElement("code")] public string Code { get; set; } /// /// 图片地址 /// [XmlElement("code_img")] public string CodeImg { get; set; } /// /// 码过期时间,单位:秒 /// [XmlElement("expire_second")] public long ExpireSecond { get; set; } /// /// 结果吗描述信息 /// [XmlElement("msg")] public string Msg { get; set; } } }