bitwarden-android/src/App/Abstractions/Services/IPushNotification.cs

10 lines
171 B
C#
Raw Normal View History

namespace Bit.App.Abstractions
{
public interface IPushNotification
{
string Token { get; }
void Register();
void Unregister();
}
}