design-patterns/Facade/ILogger.cs
2023-09-04 10:17:26 +01:00

8 lines
No EOL
176 B
C#

public interface ILogger
{
void Information(string message);
void Error(string message, Exception? ex = null);
void Fatal(string message, Exception? ex = null);
}