namespace AsterNET.Manager.Event { public class AsyncAGIEvent : ManagerEvent { /// /// Get/Set the Result /// Available since : Asterisk 12. /// public string Result { get; set; } /// /// Get/Set the command ID /// Available since : Asterisk 12. /// public string CommandId { get; set; } /// /// Available since : Asterisk 12. /// public string SubEvent { get; set; } public string Env { get; set; } #region Constructor - AsyncAGIEvent(ManagerConnection source) public AsyncAGIEvent(ManagerConnection source) : base(source) { } #endregion } }