Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertCommissionChannelCreateModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

20 lines
455 B
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiAdvertCommissionChannelCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiAdvertCommissionChannelCreateModel : AopObject
{
/// <summary>
/// 新增渠道列表
/// </summary>
[JsonProperty("channels")]
public List<KbAdvertAddChannelRequest> Channels { get; set; }
}
}