bitwarden-android/src/App/Abstractions/IPushNotificationService.cs
2019-05-28 12:01:55 -04:00

11 lines
227 B
C#

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