Files
taxbaik/TaxBaik.Web/Services/PortalAuthOptions.cs

15 lines
435 B
C#

namespace TaxBaik.Web.Services;
public sealed class PortalAuthOptions
{
public ExternalProviderOptions Google { get; set; } = new();
public ExternalProviderOptions Naver { get; set; } = new();
public ExternalProviderOptions Kakao { get; set; } = new();
public sealed class ExternalProviderOptions
{
public string ClientId { get; set; } = "";
public string ClientSecret { get; set; } = "";
}
}