api คำขอโอน

This commit is contained in:
Kittapath 2023-08-04 16:17:57 +07:00
parent f878ef239e
commit f255b1e933
15 changed files with 13056 additions and 42 deletions

View file

@ -0,0 +1,12 @@
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 List<FormFile>? File { get; set; }
}
}