mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 14:19:29 +00:00
e6a06915cd
Codestyle fixes Setup CODEOWNERS Setup dependabot
14 lines
396 B
C#
14 lines
396 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace System.Logging;
|
|
|
|
public sealed record Log
|
|
{
|
|
public Exception Exception { get; set; }
|
|
public DateTime LogTime { get; set; }
|
|
public string Category { get; set; }
|
|
public string EventId { get; set; }
|
|
public LogLevel LogLevel { get; set; }
|
|
public string Message { get; set; }
|
|
public string CorrelationVector { get; set; }
|
|
} |