reactos/irc/TechBot/TechBot.Library/ServiceOutput.cs

11 lines
169 B
C#
Raw Normal View History

using System;
namespace TechBot.Library
{
public interface IServiceOutput
{
void WriteLine(MessageContext context,
string message);
}
}