mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
3044861652
Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
14 lines
363 B
C#
14 lines
363 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Daybreak.Shared.Models;
|
|
|
|
public sealed class Log
|
|
{
|
|
public string? Message { get; set; }
|
|
public string? Category { get; set; }
|
|
public LogLevel LogLevel { get; set; }
|
|
public string? CorrelationVector { get; set; }
|
|
public string? EventId { get; set; }
|
|
public DateTime LogTime { get; set; }
|
|
}
|