mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

* [PM-17563] Add case for PushType.PendingSecurityTasks * [PM-17563] Add missing TaskId property to NotificationStatusDetails and NotificationResponseModel * [PM-17563] Add migration script to re-create NotificationStatusDetailsView to include TaskId column * [PM-17563] Select explicit columns for NotificationStatusDetailsView and fix migration script
27 lines
850 B
C#
27 lines
850 B
C#
#nullable enable
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.NotificationCenter.Enums;
|
|
|
|
namespace Bit.Core.NotificationCenter.Models.Data;
|
|
|
|
public class NotificationStatusDetails
|
|
{
|
|
// Notification fields
|
|
public Guid Id { get; set; }
|
|
public Priority Priority { get; set; }
|
|
public bool Global { get; set; }
|
|
public ClientType ClientType { get; set; }
|
|
public Guid? UserId { get; set; }
|
|
public Guid? OrganizationId { get; set; }
|
|
[MaxLength(256)]
|
|
public string? Title { get; set; }
|
|
public string? Body { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
public Guid? TaskId { get; set; }
|
|
// Notification Status fields
|
|
public DateTime? ReadDate { get; set; }
|
|
public DateTime? DeletedDate { get; set; }
|
|
}
|