16 lines
542 B
C#
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; }
|
||
|
|
}
|