Files
netch/Netch/Interfaces/ILogger.cs
2021-03-31 19:56:23 +08:00

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();
}
}