1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-27 03:52:57 +02:00
bitwarden-mobile/src/Core/Abstractions/INativeLogService.cs
2022-04-26 17:21:17 +02:00

11 lines
235 B
C#

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