mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-24 21:13:47 +08:00
feat(wxapi): 新增微信长辈就医相关接口
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// <para>表示 [POST] /cityservice/getmsgrelation 接口的响应。</para>
|
||||
/// </summary>
|
||||
public class CityServiceGetMessageRelationResponse : WechatApiResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取或设置是否已订阅。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("is_subscribed")]
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.Common.NumericalBooleanReadOnlyConverter))]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("is_subscribed")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.Common.NumericalBooleanReadOnlyConverter))]
|
||||
public bool IsSubscribed { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user