12 lines
298 B
C#
12 lines
298 B
C#
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; }
|
|
}
|
|
}
|