18 lines
415 B
C#
18 lines
415 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// KbAdvertCommissionClauseQuotaResponse Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KbAdvertCommissionClauseQuotaResponse : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 分佣定额(精度2位的非负小数)
|
|
/// </summary>
|
|
[JsonProperty("quota_amount")]
|
|
public string QuotaAmount { get; set; }
|
|
}
|
|
} |