Unfortunately this doesn't build for the MAUI project. See saleem-mirza/serilog-sinks-sqlite#41.
14 lines
328 B
C#
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; }
|
|
}
|