namespace Vinno.FIS.TRTCClient.Common.Log
{
///
/// Log EventArgs
///
public class LogEventArgs
{
///
/// Log Type
///
public DeviceLogCategory LogType { get; }
///
/// Msg
///
public string Msg { get; }
public LogEventArgs(DeviceLogCategory logType, string msg)
{
LogType = logType;
Msg = msg;
}
}
public enum DeviceLogCategory
{
Error = 1,
Warn = 2,
Info = 3,
Verb = 4
}
}