reactos/irc/TechBot/TechBot.Library/ServiceOutput.cs
Casper Hornstrup 9dab4509fa Import TechBot
svn path=/trunk/; revision=13064
2005-01-15 19:27:25 +00:00

10 lines
127 B
C#

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