design-patterns/Facade/ILogger.cs

8 lines
176 B
C#
Raw Permalink Normal View History

2023-09-04 09:17:26 +00:00
public interface ILogger
{
void Information(string message);
void Error(string message, Exception? ex = null);
void Fatal(string message, Exception? ex = null);
}