mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 02:29:40 +08:00
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Ads.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /ads/get 接口的请求。</para>
|
|
/// </summary>
|
|
public class AdsGetRequest : WechatAdsRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置广告 ID。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public long? AdId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置过滤条件。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public IList<Abstractions.CommonFilter>? Filters { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置页大小。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public int? PageSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置页码。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public int? Page { get; set; }
|
|
}
|
|
}
|