First commit

This commit is contained in:
P-A
2026-03-28 21:49:58 +01:00
parent b4eb275d62
commit b903b27890
196 changed files with 5623 additions and 2 deletions

15
Logger/ILogger.cs Normal file
View File

@@ -0,0 +1,15 @@
namespace Logger;
/// <summary>
/// Interface for logging functionality
/// </summary>
public interface ILogger
{
void Trace(string message);
void Debug(string message);
void Info(string message);
void Warning(string message);
void Error(string message);
void Fatal(string message);
void Log(LogLevel level, string message);
}