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

14 lines
363 B
C#
Raw Normal View History

2023-08-04 16:17:57 +07:00
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PlacementTransferRequest
{
public string Organization { get; set; }
public string Reason { get; set; }
public DateTime? Date { get; set; }
2023-08-04 16:17:57 +07:00
public List<FormFile>? File { get; set; }
}
}