[ADD] Added base options
This commit is contained in:
10
DotBased.AspNet.Authority/Models/Options/AuthorityOptions.cs
Normal file
10
DotBased.AspNet.Authority/Models/Options/AuthorityOptions.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace DotBased.AspNet.Authority.Models.Options;
|
||||
|
||||
public class AuthorityOptions
|
||||
{
|
||||
public LockdownOptions Lockdown { get; set; } = new();
|
||||
public LockoutOptions Lockout { get; set; } = new();
|
||||
public PasswordOptions Password { get; set; } = new();
|
||||
public ProviderOptions Provider { get; set; } = new();
|
||||
public UserOptions User { get; set; } = new();
|
||||
}
|
Reference in New Issue
Block a user