bitwarden-mobile/src/App/Abstractions/IPushNotificationService.cs

12 lines
227 B
C#

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