Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KbAdvertContentPasswordModify.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
951 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}