hrms-api-backend/BMA.EHR.Application/Responses/Messages/NotificationResponse.cs
2024-10-18 16:11:47 +07:00

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; }
}
}