You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
486 B
C#

using System;
namespace Haoliang.Models.System
{
public class LogEntry
{
public int Id { get; set; }
public DateTime Timestamp { get; set; }
public string Level { get; set; }
public string Category { get; set; }
public string Message { get; set; }
public string Exception { get; set; }
public string Source { get; set; }
public string DeviceId { get; set; }
public DateTime CreatedAt { get; set; }
}
}