This repository has been archived on 2026-06-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Xorog.Logger/Entities/LogEntry.cs

12 lines
No EOL
322 B
C#

namespace Xorog.Logger.Entities;
public class LogEntry
{
internal string RawMessage { get; set; }
public DateTime TimeOfEvent { get; set; }
public LogLevel LogLevel { get; set; }
public string Message { get; set; }
public object[] Args { get; set; }
public Exception? Exception { get; set; }
}