hrms-api-backend/BMA.EHR.Placement.Service/Requests/NotiCronjobProbationRequest.cs
2023-09-08 15:23:41 +07:00

16 lines
501 B
C#

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