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