2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A NewChannelEvent is triggered when a new channel is created.<br/>
|
2015-01-04 14:26:32 +00:00
|
|
|
/// It is implemented in channel.c
|
2013-01-18 15:55:50 +00:00
|
|
|
/// </summary>
|
|
|
|
public class NewChannelEvent : AbstractChannelEvent
|
|
|
|
{
|
|
|
|
public NewChannelEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|