Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiAdvertCommissionChannelCreateModel.cs

20 lines
455 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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; }
}
}