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

10 lines
127 B
C#
Raw Normal View History

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