From fb8599b8e18dd04caccc190df66fbbd31742a9e4 Mon Sep 17 00:00:00 2001 From: chrisin1991 Date: Sat, 27 Sep 2025 09:06:24 +0000 Subject: [PATCH] =?UTF-8?q?fix(work):=20=E7=AC=AC=E4=B8=89=E6=96=B9?= =?UTF-8?q?=E5=BA=94=E7=94=A8=E5=BC=80=E5=90=AF=E4=BB=98=E8=B4=B9=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E6=97=B6=EF=BC=8CCgibinServiceGetAuthInfoResponse=20?= =?UTF-8?q?=E4=BC=9A=E8=BF=94=E5=9B=9E=E5=BD=93=E5=89=8D=E7=94=9F=E6=95=88?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E4=BF=A1=E6=81=AF=EF=BC=8C=E8=A1=A5=E5=85=85?= =?UTF-8?q?=E9=81=97=E6=BC=8F=E7=9A=84=E7=89=88=E6=9C=AC=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CgibinServiceGetAuthInfoResponse.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs index 5dd40edb..3be8c995 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs @@ -270,6 +270,11 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models [System.Text.Json.Serialization.JsonPropertyName("agent")] public Types.Agent[] AgentList { get; set; } = default!; } + + public class Edition : CgibinServiceGetPermanentCodeResponse.Types.Edition + { + + } } /// @@ -292,5 +297,12 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models [Newtonsoft.Json.JsonProperty("auth_info")] [System.Text.Json.Serialization.JsonPropertyName("auth_info")] public Types.Authorization? Authorization { get; set; } + + /// + /// 获取或设置当前版本信息。 + /// + [Newtonsoft.Json.JsonProperty("edition_info")] + [System.Text.Json.Serialization.JsonPropertyName("edition_info")] + public Types.Edition? Edition { get;set; } } }