API ขอลาออกและโอนออก ฝั่ง admin #2196
All checks were successful
Build & Deploy Placement Service / build (push) Successful in 1m22s
Build & Deploy Retirement Service / build (push) Successful in 1m23s

This commit is contained in:
harid 2026-01-16 15:43:55 +07:00
parent 64c1021c52
commit 094789bfb1
6 changed files with 468 additions and 0 deletions

View file

@ -10,4 +10,13 @@ namespace BMA.EHR.Placement.Service.Requests
public DateTime? Date { get; set; }
public List<FormFile>? File { get; set; }
}
public class PlacementTransferAdminRequest
{
public string ProfileId { get; set; }
public string Organization { get; set; }
public string Reason { get; set; }
public DateTime? Date { get; set; }
public List<FormFile>? File { get; set; }
}
}