8 lines
176 B
C#
8 lines
176 B
C#
|
public interface ILogger
|
||
|
{
|
||
|
void Information(string message);
|
||
|
|
||
|
void Error(string message, Exception? ex = null);
|
||
|
|
||
|
void Fatal(string message, Exception? ex = null);
|
||
|
}
|