feat(work): 反序列化微信回调通知事件模型时自动解密

This commit is contained in:
Fu Diwei
2021-08-02 18:09:39 +08:00
parent c834cd4474
commit a094f93033
8 changed files with 310 additions and 53 deletions

View File

@@ -48,5 +48,15 @@ namespace SKIT.FlurlHttpClient.Wechat.Work
/// 获取或设置企业微信第三方应用的 SuiteSecret。仅限第三方应用开发时使用。
/// </summary>
public string? SuiteSecret { get; set; }
/// <summary>
/// 获取或设置企业微信服务器推送的 EncodingAESKey。
/// </summary>
public string? PushEncodingAESKey { get; set; }
/// <summary>
/// 获取或设置企业微信服务器推送的 Token。
/// </summary>
public string? PushToken { get; set; }
}
}