feat(wxapi): 新增微信长辈就医相关接口

This commit is contained in:
Fu Diwei
2024-06-17 16:27:08 +08:00
parent 39e372fc29
commit 0827d9f8c1
11 changed files with 195 additions and 1 deletions

View File

@@ -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; }
}
}