using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicShortlinkCreateResponse. /// public class AlipayMobilePublicShortlinkCreateResponse : AopResponse { /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 成功 /// [JsonProperty("msg")] public string Msg { get; set; } /// /// 短链接url /// [JsonProperty("shortlink")] public string Shortlink { get; set; } } }