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

36 lines
816 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// PromoteDetailChannelModel Data Structure.
/// </summary>
[Serializable]
public class PromoteDetailChannelModel : AopObject
{
/// <summary>
/// 渠道id
/// </summary>
[JsonProperty("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 渠道名称
/// </summary>
[JsonProperty("channel_name")]
public string ChannelName { get; set; }
/// <summary>
/// 查询时间段内的推广数据
/// </summary>
[JsonProperty("part_promote_data")]
public PromoteDataModel PartPromoteData { get; set; }
/// <summary>
/// 总推广数据
/// </summary>
[JsonProperty("total_promote_data")]
public PromoteDataModel TotalPromoteData { get; set; }
}
}