mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-15 23:13:32 +08:00
19 lines
553 B
C#
19 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [GET] /cgi-bin/draft/count 接口的响应。</para>
|
|
/// </summary>
|
|
public class CgibinDraftCountResponse : WechatApiResponse
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置草稿总数量。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("total_count")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("total_count")]
|
|
public int TotalCount { get; set; }
|
|
}
|
|
}
|