WechatOptions.cs 543 B

123456789101112131415161718192021
  1. // 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
  2. //
  3. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
  4. namespace Admin.NET.Core;
  5. /// <summary>
  6. /// 微信相关配置选项
  7. /// </summary>
  8. public sealed class WechatOptions : IConfigurableOptions
  9. {
  10. //公众号
  11. public string WechatAppId { get; set; }
  12. public string WechatAppSecret { get; set; }
  13. //小程序
  14. public string WxOpenAppId { get; set; }
  15. public string WxOpenAppSecret { get; set; }
  16. }