Files
DCIT/DCIT.Core/Models/LogWriteFailureEventArgs.cs

21 lines
505 B
C#
Raw Normal View History

2026-07-13 10:04:36 +08:00
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; }
}
}