/// <summary>
 /// Event args for the base DeviceHandler class
 /// </summary>
 public SldwDeviceEventArgs(eSldwDeviceEventType type, double value)
 {
     EventType  = type;
     Brightness = value;
 }
 /// <summary>
 /// Event args for the base DeviceHandler class
 /// </summary>
 public SldwDeviceEventArgs(eSldwDeviceEventType type, string value)
 {
     EventType   = type;
     StringValue = value;
 }