2023-09-06 14:52:20 +07:00
|
|
|
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; }
|
2023-09-08 15:23:41 +07:00
|
|
|
public string Payload { get; set; }
|
2024-07-10 15:02:45 +07:00
|
|
|
public string ReceiverUserId { get; set; }
|
2023-09-06 14:52:20 +07:00
|
|
|
public bool IsSendMail { get; set; }
|
|
|
|
|
public bool IsSendInbox { get; set; }
|
|
|
|
|
public bool IsSendNotification { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|