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