[IMPL] Added LogRaised Event

This commit is contained in:
XorogVEVO 2022-04-01 09:29:51 +02:00
parent 5550909851
commit 29225af537
Signed by untrusted user who does not match committer: Xorog
GPG key ID: 983798ED9C3E7C36
3 changed files with 11 additions and 1 deletions

View file

@ -0,0 +1,7 @@
namespace Xorog.Logger;
public class LogMessageEventArgs : EventArgs
{
public LoggerObjects.LogEntry LogEntry { get; set; }
}