Files

18 lines
411 B
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KbAdvertContentShareCodeModify Data Structure.
/// </summary>
[Serializable]
public class KbAdvertContentShareCodeModify : AopObject
{
/// <summary>
/// 宣传展示标题不能超过30个字符
/// </summary>
[JsonProperty("display_title")]
public string DisplayTitle { get; set; }
}
}