mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 19:41:57 +00:00
70350430a5
svn path=/trunk/; revision=13604
11 lines
169 B
C#
11 lines
169 B
C#
using System;
|
|
|
|
namespace TechBot.Library
|
|
{
|
|
public interface IServiceOutput
|
|
{
|
|
void WriteLine(MessageContext context,
|
|
string message);
|
|
}
|
|
}
|