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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
269 B
C#
Raw Normal View History

2019-05-28 19:01:55 +03:00
using System.Threading.Tasks;
namespace Bit.App.Abstractions
{
public interface IPushNotificationService
{
bool IsRegisteredForPush { get; }
2019-05-28 19:01:55 +03:00
Task<string> GetTokenAsync();
Task RegisterAsync();
Task UnregisterAsync();
}
}