mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 13:59:25 +00:00
10 lines
127 B
C#
10 lines
127 B
C#
|
using System;
|
||
|
|
||
|
namespace TechBot.Library
|
||
|
{
|
||
|
public interface IServiceOutput
|
||
|
{
|
||
|
void WriteLine(string message);
|
||
|
}
|
||
|
}
|