1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-29 22:18:13 +00:00
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);
}
}