Class LoginAttemptDto
- Namespace
- KadicAuth.Application.Users.DTOs
- Assembly
- KadicAuth.Application.dll
public record LoginAttemptDto
- Inheritance
-
object
LoginAttemptDto
Constructors
LoginAttemptDto(Guid, DateTime, string?, string?, bool)
public LoginAttemptDto(Guid Id, DateTime Timestamp, string? IpAddress, string? UserAgent, bool Succeeded)
Parameters
Id Guid
Timestamp DateTime
IpAddress string
UserAgent string
Succeeded bool
Properties
Id
public Guid Id { get; init; }
Property Value
- Guid
IpAddress
public string? IpAddress { get; init; }
Property Value
- string
Succeeded
public bool Succeeded { get; init; }
Property Value
- bool
Timestamp
public DateTime Timestamp { get; init; }
Property Value
- DateTime
UserAgent
public string? UserAgent { get; init; }
Property Value
- string