Files
Wino-Mail/Wino.Core.Domain/Interfaces/IWinoLogger.cs
2025-02-16 13:23:45 +01:00

11 lines
274 B
C#

using System.Collections.Generic;
namespace Wino.Core.Domain.Interfaces;
public interface IWinoLogger
{
void SetupLogger(string fullLogFilePath);
void RefreshLoggingLevel();
void TrackEvent(string eventName, Dictionary<string, string> properties = null);
}