mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-05 05:51:27 +02:00
11 lines
463 B
C#
Executable File
11 lines
463 B
C#
Executable File
namespace DotBased.ASP.Auth.Models.Configuration;
|
|
|
|
public class AuthConfiguration
|
|
{
|
|
public CacheConfiguration Cache { get; set; } = new();
|
|
public LockoutConfiguration Lockout { get; set; } = new();
|
|
public PasswordConfiguration Password { get; set; } = new();
|
|
public ProviderConfiguration Provider { get; set; } = new();
|
|
public RepositoryConfiguration Repository { get; set; } = new();
|
|
public UserConfiguration User { get; set; } = new();
|
|
} |