WechatOptions.cs 367 B

1234567891011121314151617
  1. namespace Admin.NET.Core;
  2. /// <summary>
  3. /// 微信相关配置选项
  4. /// </summary>
  5. public sealed class WechatOptions : IConfigurableOptions
  6. {
  7. //公众号
  8. public string WechatAppId { get; set; }
  9. public string WechatAppSecret { get; set; }
  10. //小程序
  11. public string WxOpenAppId { get; set; }
  12. public string WxOpenAppSecret { get; set; }
  13. }