hrms-api-backend/BMA.EHR.Placement.Service/Requests/NotiReplyRequest.cs
2023-12-24 15:05:44 +07:00

15 lines
486 B
C#

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