/// <summary>
 /// default constructor
 /// </summary>
 /// <param name="type">the type of the event</param>
 /// <param name="time">the time when the event fired</param>
 /// <param name="data">the datas concerning the event</param>
 public QlikMoveEventArgs(EventType type, DateTime time, Datas data)
 {
     this.eventType = type;
     this.timeStamp = time;
     this.datas = data;
 }
 /// <summary>
 /// default constructor
 /// </summary>
 /// <param name="type">the type of the event</param>
 /// <param name="time">the time when the event fired</param>
 /// <param name="data">the datas concerning the event</param>
 public QlikMoveEventArgs(EventType type, DateTime time, Datas data)
 {
     this.eventType = type;
     this.timeStamp = time;
     this.datas     = data;
 }