asternet/Asterisk.2013/Asterisk.NET/Manager/Event/NewStateEvent.cs

14 lines
345 B
C#
Raw Normal View History

namespace Asterisk.NET.Manager.Event
{
/// <summary>
/// A NewStateEvent is triggered when the state of a channel has changed.<br/>
/// It is implemented in <code>channel.c</code>
/// </summary>
public class NewStateEvent : AbstractChannelEvent
{
public NewStateEvent(ManagerConnection source)
: base(source)
{
}
}
}