14 lines
451 B
C#
14 lines
451 B
C#
namespace TrafagSalesExporter.Models;
|
|
|
|
public class AppEventLog
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
public string Level { get; set; } = "Info";
|
|
public string Category { get; set; } = string.Empty;
|
|
public int? SiteId { get; set; }
|
|
public string Land { get; set; } = string.Empty;
|
|
public string Message { get; set; } = string.Empty;
|
|
public string Details { get; set; } = string.Empty;
|
|
}
|