File size: 559 Bytes
f0d69b8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace TaskTrackingSystem.Shared.Models.AuditLog
{
    public class AuditLogDto
    {
        public long Id { get; set; }
        public long? UserId { get; set; }
        public string Username { get; set; } = null!;
        public string UserFullName { get; set; } = null!;
        public string Action { get; set; } = null!;
        public string Module { get; set; } = null!;
        public string Description { get; set; } = null!;
        public string? IpAddress { get; set; }
        public DateTime CreatedAt { get; set; }
    }
}