hrms-api-backend/BMA.EHR.Application/Responses/Messages/NotificationResponse.cs

23 lines
597 B
C#
Raw Permalink Normal View History

namespace BMA.EHR.Application.Responses.Messages
{
public class NotificationResponse
{
2023-09-11 15:45:31 +07:00
public Guid Id { get; set; }
public string Body { get; set; } = string.Empty;
public Guid ReceiverUserId { get; set; } = Guid.Empty;
public string? KeycloakUserId { get; set; }
2024-05-21 14:31:29 +07:00
public string Type { get; set; } = "TEXT";
2024-10-18 16:11:47 +07:00
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; }
}
}