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