14 lines
419 B
C#
14 lines
419 B
C#
namespace mws.backend.dotnet.domain.Audit;
|
|
|
|
public class LoginLog
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public Guid? UserId { get; set; }
|
|
public bool Success { get; set; }
|
|
public string? FailureReason { get; set; }
|
|
public string? IpAddress { get; set; }
|
|
public string? UserAgent { get; set; }
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
}
|