15 lines
319 B
C#
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);
|
|
}
|