Esempio n. 1
0
 internal Channel(ServerConnection creatorsCurrentConnection, string Name)
     : base(creatorsCurrentConnection, Name, true)
 {
     strName = Name;
     users = new ChannelUserContainer(creatorsCurrentConnection);
     bans = new ChannelBanContainer(creatorsCurrentConnection);
 }
Esempio n. 2
0
 internal Channel(ServerConnection creatorsCurrentConnection, string Name) : base(creatorsCurrentConnection, Name, true)
 {
     strName = Name;
     users   = new ChannelUserContainer(creatorsCurrentConnection);
     bans    = new ChannelBanContainer(creatorsCurrentConnection);
 }