Files
mws.backend.dotnet/domain/Audit/LoginLog.cs
T

14 lines
419 B
C#
Raw Normal View History

2026-09-20 16:21:15 +07:00
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; }
}