feat(wxapi): 随官方更新生成小程序码接口请求模型

This commit is contained in:
Van Zheng
2022-04-26 06:05:03 +00:00
committed by RHQYZ
parent 161b7ee880
commit 34dbf3b4be

View File

@@ -1,4 +1,4 @@
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /wxa/getwxacode 接口的请求。</para>
@@ -66,5 +66,12 @@
[Newtonsoft.Json.JsonProperty("is_hyaline")]
[System.Text.Json.Serialization.JsonPropertyName("is_hyaline")]
public bool? IsHyaline { get; set; }
/// <summary>
/// 获取或设置要打开的小程序版本。
/// </summary>
[Newtonsoft.Json.JsonProperty("env_version")]
[System.Text.Json.Serialization.JsonPropertyName("env_version")]
public string? EnvironmentVersion { get; set; }
}
}
}