mirror of
https://github.com/reactos/reactos.git
synced 2026-05-23 15:50:29 +08:00
11 lines
169 B
C#
11 lines
169 B
C#
using System;
|
|
|
|
namespace TechBot.Library
|
|
{
|
|
public interface IServiceOutput
|
|
{
|
|
void WriteLine(MessageContext context,
|
|
string message);
|
|
}
|
|
}
|