mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
26 lines
573 B
C#
26 lines
573 B
C#
using System;
|
|
using Bit.App.Enums;
|
|
|
|
namespace Bit.App.Models
|
|
{
|
|
public class PushNotification
|
|
{
|
|
public PushType Type { get; set; }
|
|
}
|
|
|
|
public abstract class SyncPushNotification : PushNotification
|
|
{
|
|
public string UserId { get; set; }
|
|
}
|
|
|
|
public class SyncCipherPushNotification : SyncPushNotification
|
|
{
|
|
public string Id { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
}
|
|
|
|
public class SyncCiphersPushNotification : SyncPushNotification
|
|
{
|
|
public DateTime Date { get; set; }
|
|
}
|
|
}
|