bitwarden-android/src/App/Abstractions/Services/IPushNotification.cs
2017-10-10 08:26:17 -04:00

9 lines
178 B
C#

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