Files
VAR.Toolbox/VAR.ScreenAutomation/Interfaces/IOutputHandler.cs
2019-11-01 00:18:01 +01:00

9 lines
174 B
C#

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