Files
VAR.Toolbox/VAR.ScreenAutomation/Interfaces/IOutputHandler.cs

8 lines
173 B
C#

namespace VAR.ScreenAutomation.Interfaces
{
public interface IOutputHandler
{
void Clean();
void AddLine(string line, object data = null);
}
}