21 lines
504 B
C#
21 lines
504 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BackupAndImport.ECO.Events
|
|||
|
{
|
|||
|
public class LogEvent : EventArgs
|
|||
|
{
|
|||
|
public Exception Exception { get; internal set; }
|
|||
|
public string Message { get; set; }
|
|||
|
public DateTime CrtTime { get; private set; }
|
|||
|
public LogEvent(string message)
|
|||
|
{
|
|||
|
this.Message = message;
|
|||
|
this.CrtTime = DateTime.Now;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|