[ADD] Added base options

This commit is contained in:
max
2024-12-23 00:59:13 +01:00
parent 44e64793b7
commit 797323789e
12 changed files with 69 additions and 16 deletions

View 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();
}