2013-01-18 15:55:50 +00:00
|
|
|
using System;
|
|
|
|
|
2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
public class AsyncAGIEvent : ManagerEvent
|
|
|
|
{
|
|
|
|
private string subEvent;
|
|
|
|
private string env;
|
|
|
|
private string result;
|
|
|
|
private string commandId;
|
|
|
|
|
|
|
|
public string Result
|
|
|
|
{
|
|
|
|
get { return result; }
|
|
|
|
set { result = value; }
|
|
|
|
}
|
|
|
|
public string CommandId
|
|
|
|
{
|
|
|
|
get { return commandId; }
|
|
|
|
set { commandId = value; }
|
|
|
|
}
|
|
|
|
public string SubEvent
|
|
|
|
{
|
|
|
|
get { return subEvent; }
|
|
|
|
set { subEvent = value; }
|
|
|
|
}
|
|
|
|
public string Env
|
|
|
|
{
|
|
|
|
get { return env; }
|
|
|
|
set { env = value; }
|
|
|
|
}
|
|
|
|
|
|
|
|
#region Constructor - AsyncAGIEvent(ManagerConnection source)
|
|
|
|
public AsyncAGIEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|