Reimplementing Authorization system
This commit is contained in:
11
DotBased.ASP.Auth/Models/Configuration/AuthConfiguration.cs
Normal file
11
DotBased.ASP.Auth/Models/Configuration/AuthConfiguration.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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();
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
namespace DotBased.ASP.Auth.Models.Configuration;
|
||||
|
||||
public class CacheConfiguration
|
||||
{
|
||||
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
namespace DotBased.ASP.Auth.Models.Configuration;
|
||||
|
||||
public class LockoutConfiguration
|
||||
{
|
||||
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
namespace DotBased.ASP.Auth.Models.Configuration;
|
||||
|
||||
public class PasswordConfiguration
|
||||
{
|
||||
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
namespace DotBased.ASP.Auth.Models.Configuration;
|
||||
|
||||
public class ProviderConfiguration
|
||||
{
|
||||
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
namespace DotBased.ASP.Auth.Models.Configuration;
|
||||
|
||||
public class RepositoryConfiguration
|
||||
{
|
||||
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
namespace DotBased.ASP.Auth.Models.Configuration;
|
||||
|
||||
public class UserConfiguration
|
||||
{
|
||||
|
||||
}
|
Reference in New Issue
Block a user