hrms-api-backend/BMA.EHR.Placement.Service/Requests/NotisRequest.cs

19 lines
635 B
C#
Raw Permalink Normal View History

2024-10-07 23:23:00 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
2024-10-18 16:11:47 +07:00
using static BMA.EHR.Application.Repositories.MessageQueue.NotificationRepository;
2024-10-07 23:23:00 +07:00
namespace BMA.EHR.Placement.Service.Requests
{
public class NotisRequest
{
public string Subject { get; set; }
public string Body { get; set; }
public string Payload { get; set; }
2024-10-18 16:11:47 +07:00
// public string NotiLink { get; set; }
public NotisLinkRequest[] ReceiverUserIds { get; set; }
2024-10-07 23:23:00 +07:00
public bool IsSendMail { get; set; }
public bool IsSendInbox { get; set; }
public bool IsSendNotification { get; set; }
}
}