first commit
This commit is contained in:
20
DCIT.Core/Models/LogWriteFailureEventArgs.cs
Normal file
20
DCIT.Core/Models/LogWriteFailureEventArgs.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace DCIT.Core.Models
|
||||
{
|
||||
public sealed class LogWriteFailureEventArgs : EventArgs
|
||||
{
|
||||
public LogWriteFailureEventArgs(LogEntry entry, string logFilePath, Exception exception)
|
||||
{
|
||||
Entry = entry;
|
||||
LogFilePath = logFilePath;
|
||||
Exception = exception;
|
||||
}
|
||||
|
||||
public LogEntry Entry { get; private set; }
|
||||
|
||||
public string LogFilePath { get; private set; }
|
||||
|
||||
public Exception Exception { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user