using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobilePublicShortlinkCreateResponse. /// public class AlipayMobilePublicShortlinkCreateResponse : AopResponse { /// /// 结果码 /// [XmlElement("code")] public string Code { get; set; } /// /// 成功 /// [XmlElement("msg")] public string Msg { get; set; } /// /// 短链接url /// [XmlElement("shortlink")] public string Shortlink { get; set; } } }