namespace AsterNET.Manager.Event { /// /// A NewChannelEvent is triggered when a new channel is created.
/// It is implemented in channel.c ///
public class NewChannelEvent : AbstractChannelEvent { public NewChannelEvent(ManagerConnection source) : base(source) { } } }