From e483045cba40130c7851ef0a04b5e9631e730c90 Mon Sep 17 00:00:00 2001 From: chrisin1991 Date: Mon, 15 Sep 2025 02:02:40 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DCgibinServiceGetAuthIn?= =?UTF-8?q?foResponse=E4=B8=AD=E5=B1=9E=E6=80=A7(CorpExtraName=20-=20Names?= =?UTF-8?q?)=E7=B1=BB=E5=9E=8B=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chrisin1991 --- .../Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs index 052d2a8a..d524df50 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs @@ -37,7 +37,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models /// [Newtonsoft.Json.JsonProperty("name_list")] [System.Text.Json.Serialization.JsonPropertyName("name_list")] - public string Names { get; set; } = default!; + public string[]? Names { get; set; } = default!; } } -- Gitee