Files
AuditLogs/audit-logs/Models/AuditLogData.cs
T
2026-06-23 19:03:17 +02:00

14 lines
445 B
C#
Executable File

namespace audit_logs.Models;
public class AuditLogData
{
public string EntityType { get; set; }
public string RecordId { get; set; }
public string UserId { get; set; }
public string ActionType { get; set; }
public string Reason { get; set; }
public DateTime ActionTime { get; set; }
public Object OriginalJson { get; set; }
public string ModifiedJson { get; set; }
public string UserIpAddress { get; set; }
}