Files
PIbd-32_BuslaevRoman_KOP/ComponentOrientedPlatform/Abstractions/IAppLogger.cs
2025-09-23 14:07:38 +04:00

15 lines
319 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComponentOrientedPlatform.Abstractions;
public interface IAppLogger
{
void Info(string message);
void Warn(string message);
void Error(string message, Exception? ex = null);
}