NonInventPurchasingSystem/CPRNIMS.Infrastructure/Entities/Common/ErrorLog.cs
2026-02-12 10:41:44 +08:00

24 lines
758 B
C#

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