using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KbAdvertContentShareCodeModify Data Structure. /// [Serializable] public class KbAdvertContentShareCodeModify : AopObject { /// /// 宣传展示标题(不能超过30个字符) /// [JsonProperty("display_title")] public string DisplayTitle { get; set; } } }