2016-09-20 13:29:46 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
|
|
|
{
|
2016-09-21 07:04:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A dial begin event is triggered whenever when a dial action has started.<br/>
|
|
|
|
/// </summary>
|
|
|
|
public class DialBeginEvent : DialEvent
|
2016-09-20 13:29:46 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Creates a new DialBeginEvent.
|
|
|
|
/// </summary>
|
|
|
|
public DialBeginEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|