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