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; } } }