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

16 lines
499 B
C#
Raw Permalink Normal View History

2024-10-19 22:29:44 +07:00
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 NotisSendRequest
{
public string Subject { get; set; }
public string Body { get; set; }
public string Payload { get; set; }
// public string NotiLink { get; set; }
public NotisLinkSendRequest[] ReceiverUserIds { get; set; }
}
}