Libation/Source/AppScaffolding/ILogForm.cs
2023-02-06 16:04:58 -07:00

7 lines
96 B
C#

namespace AppScaffolding
{
public interface ILogForm
{
void WriteLine(string text);
}
}