send email

This commit is contained in:
kittapath 2024-11-19 12:57:33 +07:00
parent e7753c280d
commit 519ef2f143
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,12 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class NotiEmailRequest
{
public string Subject { get; set; }
public string Body { get; set; }
public string Email { get; set; }
}
}