mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
9dab4509fa
svn path=/trunk/; revision=13064
10 lines
127 B
C#
10 lines
127 B
C#
using System;
|
|
|
|
namespace TechBot.Library
|
|
{
|
|
public interface IServiceOutput
|
|
{
|
|
void WriteLine(string message);
|
|
}
|
|
}
|