From 8fe1781d2f72e5fe7c070a68564c5cbf9008b725 Mon Sep 17 00:00:00 2001 From: chrisin1991 Date: Thu, 18 Sep 2025 10:30:16 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=AC=AC=E4=B8=89=E6=96=B9=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E5=BC=80=E5=90=AF=E4=BB=98=E8=B4=B9=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E6=97=B6=EF=BC=8CCgibinServiceGetAuthInfoResponse=E4=BC=9A?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=E5=BD=93=E5=89=8D=E7=94=9F=E6=95=88=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E4=BF=A1=E6=81=AF=EF=BC=8C=E8=A1=A5=E5=85=85=E9=81=97?= =?UTF-8?q?=E6=BC=8F=E7=9A=84=E7=89=88=E6=9C=AC=E4=BF=A1=E6=81=AF=E5=B1=9E?= =?UTF-8?q?=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chrisin1991 --- .../CgibinService/CgibinServiceGetAuthInfoResponse.cs | 7 +++++++ 1 file changed, 7 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..ef241004 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinService/CgibinServiceGetAuthInfoResponse.cs @@ -292,5 +292,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 CgibinServiceGetPermanentCodeResponse.Types.Edition? Edition { get; set; } } } -- Gitee