mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 21:53:57 +00:00
18 lines
290 B
C#
18 lines
290 B
C#
using Bit.App.Abstractions;
|
|
|
|
namespace Bit.App.Services
|
|
{
|
|
public class NoopPushNotificationService : IPushNotificationService
|
|
{
|
|
public string Token => null;
|
|
|
|
public void Register()
|
|
{
|
|
}
|
|
|
|
public void Unregister()
|
|
{
|
|
}
|
|
}
|
|
}
|