mirror of
https://github.com/bitwarden/android.git
synced 2024-12-30 21:08:33 +03:00
11 lines
227 B
C#
11 lines
227 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IPushNotificationService
|
|
{
|
|
Task<string> GetTokenAsync();
|
|
Task RegisterAsync();
|
|
Task UnregisterAsync();
|
|
}
|
|
}
|