mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
20 lines
381 B
C#
20 lines
381 B
C#
|
using Bit.App.Enums;
|
|||
|
|
|||
|
namespace Bit.App.Models
|
|||
|
{
|
|||
|
public class PushNotification
|
|||
|
{
|
|||
|
public PushType Type { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class SyncPushNotification : PushNotification
|
|||
|
{
|
|||
|
public string UserId { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class SyncCipherPushNotification : SyncPushNotification
|
|||
|
{
|
|||
|
public string CipherId { get; set; }
|
|||
|
}
|
|||
|
}
|