namespace AsterNET.Manager.Event
{
///
/// Raised when a DTMF digit has started on a channel.
/// See https://wiki.asterisk.org/wiki/display/AST/Asterisk+12+ManagerEvent_DTMFBegin
///
public class DTMFBeginEvent : ManagerEvent
{
///
/// Creates a new using the given .
///
///
public DTMFBeginEvent(ManagerConnection source)
: base(source)
{
}
///
/// Gets or sets the direction.
///
public string Direction { get; set; }
///
/// Gets or sets the digit.
///
public string Digit { get; set; }
}
}