1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 17:23:18 +00:00

push notification services

This commit is contained in:
Kyle Spearrin
2019-05-28 12:01:55 -04:00
parent faccb61a6b
commit 3f11fdaa82
24 changed files with 1982 additions and 1256 deletions

View File

@@ -0,0 +1,7 @@
namespace Bit.Core.Models.Request
{
public class DeviceTokenRequest
{
public string PushToken { get; set; }
}
}

View File

@@ -4,10 +4,12 @@ using System.Collections.Generic;
namespace Bit.Core.Models.Response
{
public class PushNotificationResponse
public class NotificationResponse
{
public string ContextId { get; set; }
public NotificationType Type { get; set; }
public string Payload { get; set; }
public object PayloadObject { get; set; }
}
public class SyncCipherNotification