feat(wxapi): 随官方更新第三方平台提交代码审核接口模型

This commit is contained in:
Fu Diwei 2023-02-01 14:12:24 +08:00
parent 65ed7eefd7
commit b50d6da6dd

View File

@ -182,6 +182,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
/// </summary>
[Newtonsoft.Json.JsonProperty("privacy_api_not_use")]
[System.Text.Json.Serialization.JsonPropertyName("privacy_api_not_use")]
public bool IsPrivacyApiNotUsed { get; set; }
public bool? IsPrivacyApiNotUsed { get; set; }
/// <summary>
/// 获取或设置订单中心页面路径。
/// </summary>
[Newtonsoft.Json.JsonProperty("order_path")]
[System.Text.Json.Serialization.JsonPropertyName("order_path")]
public string? OrderPagePath { get; set; }
}
}