/// <summary>
 /// Initializes a new instance of the <see cref="EventRecievedEventArgs"/> class.
 /// </summary>
 /// <param name="receivedEvent">The received event.</param>
 public EventRecievedEventArgs(EventBase receivedEvent)
 {
     _receivedEvent = receivedEvent;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="EventRecieved"/> class.
 /// </summary>
 /// <param name="fsEvent">The fs event.</param>
 public EventRecieved(EventBase fsEvent)
 {
     FreeSwitchEvent = fsEvent;
 }
 /// <summary>
 /// 
 /// </summary>
 /// <param name="evt">Note that all events have NOT being developed to be sent, only to be received.</param>
 public SendEventCmd(EventBase evt)
 {
     _event = evt;
 }