Files
lct2025-lonolith/LctMonolith/Models/EventLog.cs
2025-09-30 02:16:37 +03:00

12 lines
333 B
C#

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;
}