mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-11 10:16:20 +08:00
23 lines
693 B
C#
23 lines
693 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /iotmanage/devices 接口的请求。</para>
|
|
/// </summary>
|
|
public class QueryIoTManageDevicesRequest : WechatTenpayRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置分页大小。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public int Limit { get; set; } = 10;
|
|
|
|
/// <summary>
|
|
/// 获取或设置分页开始位置。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonIgnore]
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
|
public int Offset { get; set; }
|
|
}
|
|
}
|