12 lines
362 B
C#
12 lines
362 B
C#
namespace OnlyOneAccessTemplate.Models.RateLimits
|
|
{
|
|
public class RateLimitEntry
|
|
{
|
|
public string IpAddress { get; set; } = string.Empty;
|
|
public int RequestCount { get; set; }
|
|
public DateTime LastRequest { get; set; }
|
|
public bool RequiresCaptcha { get; set; }
|
|
public DateTime? CaptchaExpiry { get; set; }
|
|
}
|
|
}
|