feat: Fixed errors
This commit is contained in:
11
LctMonolith/Models/EventLog.cs
Normal file
11
LctMonolith/Models/EventLog.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace LctMonolith.Models;
|
||||
|
||||
public class EventLog
|
||||
{
|
||||
public Guid Id { get; set; } = Guid.NewGuid();
|
||||
public EventType Type { get; set; }
|
||||
public Guid UserId { get; set; }
|
||||
public AppUser User { get; set; } = null!;
|
||||
public string? Data { get; set; }
|
||||
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
||||
}
|
||||
Reference in New Issue
Block a user