Files
laatzen/LaaProductionWeb/LaaProductionWeb.Blazor/Components/Logging/Sqlite/SqliteLog.cs
T
2025-03-17 16:03:24 +01:00

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; }
}
}