1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00
bitwarden-mobile/src/Core/Abstractions/ILogService.cs
2019-06-03 12:52:46 -04:00

10 lines
228 B
C#

namespace Bit.Core.Abstractions
{
public interface ILogService
{
void Debug(string message);
void Error(string message);
void Info(string message);
void Warning(string message);
}
}