1234567891011121314151617181920212223242526272829303132 |
- namespace Vinno.FIS.TRTCClient.Common.Log
- {
- /// <summary>
- /// Log EventArgs
- /// </summary>
- public class LogEventArgs
- {
- /// <summary>
- /// Log Type
- /// </summary>
- public DeviceLogCategory LogType { get; }
- /// <summary>
- /// Msg
- /// </summary>
- 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
- }
- }
|