mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-21 02:58:06 +08:00
21 lines
776 B
C#
21 lines
776 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// <para>表示 [POST] /cgi-bin/draft/switch 接口的响应。</para>
|
|||
|
/// </summary>
|
|||
|
public class CgibinDraftSwitchResponse : WechatApiResponse
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 获取或设置是否开启草稿箱功能。
|
|||
|
/// </summary>
|
|||
|
[Newtonsoft.Json.JsonProperty("is_open")]
|
|||
|
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.NumericalBooleanConverter))]
|
|||
|
[System.Text.Json.Serialization.JsonPropertyName("is_open")]
|
|||
|
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.NumericalBooleanConverter))]
|
|||
|
public bool IsOpen { get; set; }
|
|||
|
}
|
|||
|
}
|