Support private messages
[reactos.git] / irc / TechBot / TechBot.Library / ServiceOutput.cs
1 using System;
2
3 namespace TechBot.Library
4 {
5 public interface IServiceOutput
6 {
7 void WriteLine(MessageContext context,
8 string message);
9 }
10 }