namespace AsterNET.Manager.Event { public class DTMFEvent : ManagerEvent { /// /// Creates a new DialEvent. /// 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; } } }