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

10 lines
178 B
C#
Raw Normal View History

namespace Bit.App.Abstractions
{
2017-10-10 15:25:23 +03:00
public interface IPushNotificationService
{
string Token { get; }
void Register();
void Unregister();
}
}