接口文件
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// KbAdvertContentPasswordModify Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class KbAdvertContentPasswordModify : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 口令红包背景图的django ID
|
||||
/// </summary>
|
||||
[JsonProperty("background_img_id")]
|
||||
public string BackgroundImgId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 口令红包品牌名称(品牌名称不能超过20位)
|
||||
/// </summary>
|
||||
[JsonProperty("brand_name")]
|
||||
public string BrandName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 红包口令(口令不能超过20位,口令只能是中文、英文、数字组合,不能纯数字)
|
||||
/// </summary>
|
||||
[JsonProperty("password")]
|
||||
public string Password { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 口令红包券LOGO的django ID
|
||||
/// </summary>
|
||||
[JsonProperty("voucher_logo_id")]
|
||||
public string VoucherLogoId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user