Files
modernkeepass/ModernKeePass.Application/Common/Interfaces/ILogger.cs
2020-05-18 22:20:31 +02:00

12 lines
298 B
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace ModernKeePass.Application.Common.Interfaces
{
public interface ILogger
{
Task LogError(Exception exception);
void LogTrace(string message, Dictionary<string, string> values);
}
}