namespace Admin.NET.Core;
///
/// 第三方登录授权配置选项
///
public sealed class OAuthOptions : IConfigurableOptions
{
///
/// 微信配置
///
public OAuthOptionItem Weixin { get; set; }
}
public class OAuthOptionItem
{
///
/// ClientId
///
public string ClientId { get; set; }
///
/// ClientSecret
///
public string ClientSecret { get; set; }
}