Bitwarden-app-android-iphon.../src/App/Abstractions/IPushNotificationService.cs

13 lines
269 B
C#

using System.Threading.Tasks;
namespace Bit.App.Abstractions
{
public interface IPushNotificationService
{
bool IsRegisteredForPush { get; }
Task<string> GetTokenAsync();
Task RegisterAsync();
Task UnregisterAsync();
}
}