using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.Entities.Common { public class ErrorLog { public Guid Id { get; set; } public string Path { get; set; } = default!; public string HttpMethod { get; set; } = default!; public string? QueryString { get; set; } public int StatusCode { get; set; } public string ExceptionType { get; set; } = default!; public string Message { get; set; } = default!; public string? StackTrace { get; set; } public string? UserId { get; set; } public string? IpAddress { get; set; } public DateTime CreatedAt { get; set; } } }