asternet/Asterisk.2013/Asterisk.NET/Manager/Event/DTMFEvent.cs
2015-01-03 15:37:29 +00:00

21 lines
464 B
C#

namespace AsterNET.Manager.Event
{
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; }
public bool Begin { get; set; }
public bool End { get; set; }
}
}