mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-05 05:51:27 +02:00
8 lines
262 B
C#
Executable File
8 lines
262 B
C#
Executable File
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);
|
|
} |