OAuthOptions.cs 301 B

123456789101112
  1. namespace Admin.NET.Core;
  2. /// <summary>
  3. /// 第三方登录授权配置选项
  4. /// </summary>
  5. public sealed class OAuthOptions : IConfigurableOptions
  6. {
  7. /// <summary>
  8. /// 微信配置
  9. /// </summary>
  10. public Microsoft.AspNetCore.Authentication.OAuth.OAuthOptions Weixin { get; set; }
  11. }