hrms-api-backend/BMA.EHR.Placement.Service/Requests/NotisRequest.cs
2024-10-18 16:11:47 +07:00

18 lines
635 B
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
using static BMA.EHR.Application.Repositories.MessageQueue.NotificationRepository;
namespace BMA.EHR.Placement.Service.Requests
{
public class NotisRequest
{
public string Subject { get; set; }
public string Body { get; set; }
public string Payload { get; set; }
// public string NotiLink { get; set; }
public NotisLinkRequest[] ReceiverUserIds { get; set; }
public bool IsSendMail { get; set; }
public bool IsSendInbox { get; set; }
public bool IsSendNotification { get; set; }
}
}