No more static
This commit is contained in:
parent
f441a104c9
commit
d8272c36a1
6 changed files with 118 additions and 113 deletions
9
Entities/LogEntry.cs
Normal file
9
Entities/LogEntry.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
namespace Xorog.Logger.Entities;
|
||||
|
||||
public class LogEntry
|
||||
{
|
||||
public DateTime TimeOfEvent { get; set; }
|
||||
public LogLevel LogLevel { get; set; }
|
||||
public string Message { get; set; }
|
||||
public Exception? Exception { get; set; }
|
||||
}
|
||||
Reference in a new issue