mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 17:30:22 +08:00
19 lines
634 B
C#
19 lines
634 B
C#
namespace Foxel.Models.Response.Log;
|
|
|
|
public class LogResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public LogLevel Level { get; set; }
|
|
public string Message { get; set; } = string.Empty;
|
|
public string Category { get; set; } = string.Empty;
|
|
public int? EventId { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public string? Exception { get; set; }
|
|
public string? RequestPath { get; set; }
|
|
public string? RequestMethod { get; set; }
|
|
public int? StatusCode { get; set; }
|
|
public string? IPAddress { get; set; }
|
|
public int? UserId { get; set; }
|
|
public string? Properties { get; set; }
|
|
}
|