noti probation

This commit is contained in:
Kittapath 2023-09-08 15:23:41 +07:00
parent ffac27ef76
commit 3a334387bd
20 changed files with 33093 additions and 91 deletions

View file

@ -0,0 +1,16 @@
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; }
}
}

View file

@ -7,6 +7,7 @@ namespace BMA.EHR.Placement.Service.Requests
{
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; }