Files
2026-06-23 19:03:17 +02:00

23 lines
632 B
C#
Executable File

namespace audit_logs.Models;
public class AuditRecordDto
{
public string Id { get; set; }
public string EntityType { get; set; }
public string RecordId { get; set; }
public string UserId { get; set; }
public string ActionType { get; set; }
public DateTime ActionTime { get; set; }
public List<ChangeDto> Changes { get; set; }
public string Reason { get; set; }
public string UserIpAddress { get; set; }
}
public class ChangeDto
{
public string Field { get; set; }
public object OldValue { get; set; }
public object NewValue { get; set; }
public string ValueType { get; set; }
}