10 lines
126 B
C#
10 lines
126 B
C#
using System;
|
|
|
|
namespace LibationWinForms.ProcessQueue
|
|
{
|
|
public interface ILogForm
|
|
{
|
|
void WriteLine(string text);
|
|
}
|
|
}
|