14 lines
445 B
C#
14 lines
445 B
C#
|
|
namespace OTSSignsOrchestrator.Server.Data.Entities;
|
||
|
|
|
||
|
|
public class AuditLog
|
||
|
|
{
|
||
|
|
public Guid Id { get; set; }
|
||
|
|
public Guid? InstanceId { get; set; }
|
||
|
|
public string Actor { get; set; } = string.Empty;
|
||
|
|
public string Action { get; set; } = string.Empty;
|
||
|
|
public string Target { get; set; } = string.Empty;
|
||
|
|
public string? Outcome { get; set; }
|
||
|
|
public string? Detail { get; set; }
|
||
|
|
public DateTime OccurredAt { get; set; }
|
||
|
|
}
|