old_flsystem/应用/BackupAndImport/ECO/Events/LogEvent.cs

21 lines
504 B
C#
Raw Normal View History

2022-09-29 10:35:00 +00:00
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;
}
}
}