8 lines
96 B
C#
8 lines
96 B
C#
namespace AppScaffolding
|
|
{
|
|
public interface ILogForm
|
|
{
|
|
void WriteLine(string text);
|
|
}
|
|
}
|