Files
mws.backend.dotnet/domain/Audit/ActionLog.cs
T
2026-09-20 16:21:15 +07:00

16 lines
542 B
C#

namespace mws.backend.dotnet.domain.Audit;
public class ActionLog
{
public Guid Id { get; set; }
public Guid ActorUserId { get; set; }
public string ActorUsername { get; set; } = string.Empty;
public string Action { get; set; } = string.Empty;
public string EntityType { get; set; } = string.Empty;
public Guid? EntityId { get; set; }
public string? EntityName { get; set; }
public string? IpAddress { get; set; }
public string? UserAgent { get; set; }
public DateTimeOffset CreatedAt { get; set; }
}