hrms-api-backend/BMA.EHR.Application/Responses/Messages/NotificationResponse.cs
2023-09-11 15:45:31 +07:00

20 lines
545 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 Type { get; set; } = "TEXT";
public CommandPayload Payload { get; set; } = new();
public bool IsOpen { get; set; } = false;
public DateTime ReceiveDate { get; set; } = DateTime.Now;
public DateTime? OpenDate { get; set; }
}
}