WechatOptions.cs 654 B

12345678910111213141516171819202122232425262728
  1. using Furion.ConfigurableOptions;
  2. namespace Admin.NET.Core
  3. {
  4. /// <summary>
  5. /// 微信相关配置选项
  6. /// </summary>
  7. public sealed class WechatOptions : IConfigurableOptions
  8. {
  9. //公众号
  10. public string WechatAppId { get; set; }
  11. public string WechatAppSecret { get; set; }
  12. public string EncodingAESKey { get; set; }
  13. public string Token { get; set; }
  14. //小程序
  15. public string WxOpenAppId { get; set; }
  16. public string WxOpenAppSecret { get; set; }
  17. public string WxOpenToken { get; set; }
  18. public string WxOpenEncodingAESKey { get; set; }
  19. }
  20. }