2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
public class DTMFEvent : ManagerEvent
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new DialEvent.
|
|
|
|
/// </summary>
|
|
|
|
public DTMFEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public string Direction { get; set; }
|
|
|
|
|
|
|
|
public string Digit { get; set; }
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
public bool Begin { get; set; }
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
public bool End { get; set; }
|
|
|
|
}
|
|
|
|
}
|