14 lines
445 B
C#
Executable File
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; }
|
|
} |