mirror of
https://github.com/bitwarden/mobile
synced 2026-01-03 00:53:27 +00:00
11 lines
235 B
C#
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);
|
|
}
|
|
}
|