mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-01-19 02:24:19 +01:00
9 lines
342 B
C#
9 lines
342 B
C#
namespace DotBased.ASP.Authentication.Configuration;
|
|
|
|
public class AuthenticationConfiguration
|
|
{
|
|
public CacheConfiguration Cache { get; set; } = new();
|
|
public LockoutConfiguration Lockout { get; set; } = new();
|
|
public PasswordConfiguration Password { get; set; } = new();
|
|
public UserConfiguration User { get; set; } = new();
|
|
} |