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