mirror of
https://github.com/bitwarden/server.git
synced 2026-02-07 01:16:22 +08:00
* Revert "Add git blame entry (#2226)" This reverts commit239286737d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a.
48 lines
1.2 KiB
C#
48 lines
1.2 KiB
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models
|
|
{
|
|
public class PushNotificationData<T>
|
|
{
|
|
public PushNotificationData(PushType type, T payload, string contextId)
|
|
{
|
|
Type = type;
|
|
Payload = payload;
|
|
ContextId = contextId;
|
|
}
|
|
|
|
public PushType Type { get; set; }
|
|
public T Payload { get; set; }
|
|
public string ContextId { get; set; }
|
|
}
|
|
|
|
public class SyncCipherPushNotification
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid? UserId { get; set; }
|
|
public Guid? OrganizationId { get; set; }
|
|
public IEnumerable<Guid> CollectionIds { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
}
|
|
|
|
public class SyncFolderPushNotification
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
}
|
|
|
|
public class UserPushNotification
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public DateTime Date { get; set; }
|
|
}
|
|
|
|
public class SyncSendPushNotification
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
}
|
|
}
|