hrms-api-backend/BMA.EHR.Placement.Service/Requests/SendEmailRequest.cs

13 lines
298 B
C#
Raw Permalink Normal View History

2024-10-29 17:48:41 +07:00
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class SendEmailRequest
{
public string Subject { get; set; }
public string Body { get; set; }
public string Email { get; set; }
}
}