[ADD] Added base options
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace DotBased.AspNet.Authority.Models.Options;
|
||||
|
||||
public class LockoutOptions
|
||||
{
|
||||
public bool EnableLockout { get; set; } = true;
|
||||
public int FailedAttempts { get; set; } = 3;
|
||||
public TimeSpan LockoutTimeout { get; set; } = TimeSpan.FromMinutes(30);
|
||||
}
|
Reference in New Issue
Block a user