mirror of
https://github.com/reactos/reactos.git
synced 2025-06-14 15:48:30 +00:00
Support multiple channels
svn path=/trunk/; revision=13604
This commit is contained in:
parent
6536947239
commit
70350430a5
15 changed files with 251 additions and 109 deletions
23
irc/TechBot/TechBot.Library/MessageContext.cs
Normal file
23
irc/TechBot/TechBot.Library/MessageContext.cs
Normal file
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
using TechBot.IRCLibrary;
|
||||
|
||||
namespace TechBot.Library
|
||||
{
|
||||
public class MessageContext
|
||||
{
|
||||
private IrcChannel channel;
|
||||
|
||||
public IrcChannel Channel
|
||||
{
|
||||
get
|
||||
{
|
||||
return channel;
|
||||
}
|
||||
}
|
||||
|
||||
public MessageContext(IrcChannel channel)
|
||||
{
|
||||
this.channel = channel;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue