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

12 lines
227 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
{
Task<string> GetTokenAsync();
Task RegisterAsync();
Task UnregisterAsync();
}
}