mirror of
https://github.com/bitwarden/android.git
synced 2025-01-02 22:37:34 +03:00
12 lines
227 B
C#
12 lines
227 B
C#
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Bit.App.Abstractions
|
|||
|
{
|
|||
|
public interface IPushNotificationService
|
|||
|
{
|
|||
|
Task<string> GetTokenAsync();
|
|||
|
Task RegisterAsync();
|
|||
|
Task UnregisterAsync();
|
|||
|
}
|
|||
|
}
|