hrms-api-backend/BMA.EHR.Placement.Service/Requests/NotiRequest.cs
2024-07-10 15:02:45 +07:00

16 lines
490 B
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class NotiRequest
{
public string Subject { get; set; }
public string Body { get; set; }
public string Payload { get; set; }
public string ReceiverUserId { get; set; }
public bool IsSendMail { get; set; }
public bool IsSendInbox { get; set; }
public bool IsSendNotification { get; set; }
}
}