2023-09-01 15:21:27 +07:00
|
|
|
using BMA.EHR.Domain.Models.MetaData;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
|
|
|
{
|
|
|
|
|
public class RetirementDeceasedAddNotiPersonRequest
|
|
|
|
|
{
|
2023-09-01 18:07:28 +07:00
|
|
|
public List<RetirementDeceasedAddNotiPerson> Persons { get; set; }
|
2023-09-01 15:21:27 +07:00
|
|
|
}
|
|
|
|
|
public class RetirementDeceasedAddNotiPerson
|
|
|
|
|
{
|
2024-05-21 14:31:29 +07:00
|
|
|
public string ProfileId { get; set; }
|
2023-09-15 00:09:54 +07:00
|
|
|
public bool IsSendMail { get; set; } = true;
|
|
|
|
|
public bool IsSendInbox { get; set; } = true;
|
|
|
|
|
public bool IsSendNotification { get; set; } = true;
|
2023-09-01 15:21:27 +07:00
|
|
|
}
|
|
|
|
|
}
|