mirror of
https://github.com/bitwarden/android.git
synced 2024-12-28 11:58:30 +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();
|
|||
|
}
|
|||
|
}
|