mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-01-02 10:58:43 -05:00
10 lines
126 B
C#
10 lines
126 B
C#
using System;
|
|
|
|
namespace LibationWinForms.ProcessQueue
|
|
{
|
|
public interface ILogForm
|
|
{
|
|
void WriteLine(string text);
|
|
}
|
|
}
|