Implemented models
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
namespace PostFundManagement.Domain.Models;
|
||||
|
||||
public class AuditLog
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public string? EntityName { get; set; }
|
||||
|
||||
public long EntityId { get; set; }
|
||||
|
||||
public string? Action { get; set; }
|
||||
|
||||
public string[]? Changes { get; set; }
|
||||
|
||||
public Guid PerformedBy { get; set; }
|
||||
|
||||
public DateTime Timestamp { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user