Files
Govor/Govor.ConsoleClient/Services/Interfaces/ILogger.cs
T
2025-07-19 23:18:08 +07:00

10 lines
234 B
C#

namespace Govor.ConsoleClient.Services.Interfaces;
public interface ILogger
{
void Log(string message);
void Info(string message);
void Warn(string message);
void Error(string message);
void Title(string title);
}