mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
11 lines
228 B
C#
11 lines
228 B
C#
namespace Netch.Interfaces
|
|
{
|
|
public interface ILogger
|
|
{
|
|
void Info(string text);
|
|
void Warning(string text);
|
|
void Error(string text);
|
|
void Debug(string s);
|
|
void ShowLog();
|
|
}
|
|
} |