mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
10 lines
371 B
C#
10 lines
371 B
C#
|
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();
|
||
|
}
|