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.
18 lines
526 B
C#
18 lines
526 B
C#
using System;
|
|
using Haoliang.Models.DataCollection;
|
|
|
|
namespace Haoliang.Models.System
|
|
{
|
|
public class LogEntry
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public LogLevel 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; }
|
|
}
|
|
} |