/// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, Tcc2DeviceHandler.eLedColor value)
 {
     EventType = type;
     LedColor  = value;
 }
 /// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, bool value)
 {
     EventType = type;
     BoolValue = value;
 }
 /// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, int value)
 {
     EventType = type;
     IntValue  = value;
 }
 /// <summary>
 /// Event args for the DeviceHandler class
 /// </summary>
 public Tcc2DeviceEventArgs(eTcc2DeviceEventType type, string value)
 {
     EventType   = type;
     StringValue = value;
 }