Добавьте файлы проекта.
This commit is contained in:
12
Updater/Core/ILogger.cs
Normal file
12
Updater/Core/ILogger.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Updater.Core;
|
||||
|
||||
/// <summary>Простая абстракция журналирования.</summary>
|
||||
public interface ILogger
|
||||
{
|
||||
/// <summary>Информационное сообщение.</summary>
|
||||
void Info(string message);
|
||||
/// <summary>Предупреждающее сообщение.</summary>
|
||||
void Warn(string message);
|
||||
/// <summary>Сообщение об ошибке.</summary>
|
||||
void Error(string message);
|
||||
}
|
||||
Reference in New Issue
Block a user