app/BTCPayApp.Core/Data/LogEntry.cs
Dennis Reimann 128ee5b744 Log to SQLite
Unfortunately this doesn't build for the MAUI project. See saleem-mirza/serilog-sinks-sqlite#41.
2025-05-08 11:29:06 +02:00

14 lines
328 B
C#

using Serilog.Events;
namespace BTCPayApp.Core.Data;
public class LogEntry
{
public int Id { get; set; }
public string Level { get; set; }
public DateTime TimeStamp { get; set; }
public string RenderedMessage { get; set; }
public string Exception { get; set; }
public string Properties { get; set; }
}