DotBased/DotBased.AspNet.Authority/Models/Options/AuthorityOptions.cs

11 lines
434 B
C#
Raw Normal View History

2024-12-23 00:59:13 +01:00
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();
2024-12-25 22:50:04 +01:00
public RepositoryOptions Repository { get; set; } = new();
2024-12-23 00:59:13 +01:00
public UserOptions User { get; set; } = new();
}