mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-18 00:29:48 +00:00
9 lines
229 B
C#
9 lines
229 B
C#
using Serilog.Events;
|
|
using static Daybreak.Services.Logging.StructuredLogFormatter;
|
|
|
|
namespace Daybreak.Models;
|
|
|
|
public sealed record StructuredLogEntry(LogEvent Log, IReadOnlyList<LogToken> Tokens, string FormattedText)
|
|
{
|
|
}
|