26 lines
524 B
C#
26 lines
524 B
C#
namespace LaaProductionWeb.Blazor.Components.Logging.Sqlite
|
|
{
|
|
using SQLite;
|
|
|
|
using System;
|
|
|
|
public class SqliteLog
|
|
{
|
|
[PrimaryKey]
|
|
[AutoIncrement]
|
|
public int LogId { get; set; }
|
|
|
|
public DateTime DateTime { get; set; } = DateTime.UtcNow;
|
|
|
|
public string LogLevel { get; set; }
|
|
|
|
public int EventId { get; set; }
|
|
|
|
public string EventName { get; set; }
|
|
|
|
public string EventSource { get; set; }
|
|
|
|
public string Message { get; set; }
|
|
}
|
|
}
|