2022-05-18 17:32:53 -06:00

10 lines
126 B
C#

using System;
namespace LibationWinForms.ProcessQueue
{
public interface ILogForm
{
void WriteLine(string text);
}
}