22 lines
597 B
C#
22 lines
597 B
C#
namespace BMA.EHR.Application.Responses.Messages
|
|
{
|
|
public class NotificationResponse
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Body { get; set; } = string.Empty;
|
|
|
|
public Guid ReceiverUserId { get; set; } = Guid.Empty;
|
|
|
|
public string? KeycloakUserId { get; set; }
|
|
|
|
public string Type { get; set; } = "TEXT";
|
|
|
|
public string Payload { get; set; } = string.Empty;
|
|
|
|
public bool IsOpen { get; set; } = false;
|
|
|
|
public DateTime ReceiveDate { get; set; } = DateTime.Now;
|
|
|
|
public DateTime? OpenDate { get; set; }
|
|
}
|
|
}
|