1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-08 03:23:23 +00:00
Files
mobile/src/App/Services/NoopPushNotificationService.cs
2019-05-28 12:01:55 -04:00

24 lines
487 B
C#

using System.Threading.Tasks;
using Bit.App.Abstractions;
namespace Bit.App.Services
{
public class NoopPushNotificationService : IPushNotificationService
{
public Task<string> GetTokenAsync()
{
return Task.FromResult(null as string);
}
public Task RegisterAsync()
{
return Task.FromResult(0);
}
public Task UnregisterAsync()
{
return Task.FromResult(0);
}
}
}