using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbAdvertContentPassword Data Structure. /// [Serializable] public class KbAdvertContentPassword : AopObject { /// /// 红包口令 /// [JsonProperty("password")] public string Password { get; set; } /// /// 红包口令分享地址 /// [JsonProperty("share_page_url")] public string SharePageUrl { get; set; } } }