mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-05-16 07:17:54 +02:00
8 lines
342 B
C#
8 lines
342 B
C#
namespace DotBased.AspNet.Authority.Models.Options.Auth;
|
|
|
|
public class AuthorityAuthenticationOptions
|
|
{
|
|
public AuthenticationSecurityOptions Security { get; set; } = new AuthenticationSecurityOptions();
|
|
public SessionOptions Session { get; set; } = new SessionOptions();
|
|
public string DefaultScheme { get; set; } = string.Empty;
|
|
} |