9 lines
174 B
C#
9 lines
174 B
C#
namespace VAR.ScreenAutomation.Interfaces
|
|
{
|
|
public interface IOutputHandler
|
|
{
|
|
void Clean();
|
|
void AddLine(string line, object data = null);
|
|
}
|
|
}
|