namespace Common.Logging; /// /// EventArgs for when a new log entry is present. /// public class NewLogEntryEventArgs : EventArgs { public LogEntry LogEntry { get; } public NewLogEntryEventArgs(LogEntry logEntry) { this.LogEntry = logEntry; } }