mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
9 lines
178 B
C#
9 lines
178 B
C#
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IPushNotificationService
|
|
{
|
|
string Token { get; }
|
|
void Register();
|
|
void Unregister();
|
|
}
|
|
}
|