From 51fd5a2498eb0dec8ea4378452ecd493e0189253 Mon Sep 17 00:00:00 2001 From: chrisin1991 Date: Tue, 16 Sep 2025 09:00:51 +0000 Subject: [PATCH] =?UTF-8?q?fix(work):=20=E4=BF=AE=E5=A4=8D=20CgibinService?= =?UTF-8?q?GetAuthInfoResponse=20=E4=B8=AD=E5=B1=9E=E6=80=A7=20CorpExtraNa?= =?UTF-8?q?me/Names=20=E7=B1=BB=E5=9E=8B=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../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!; } }