API โอนชื่อผู้ผ่านการสอบแข่งขันตามเลขบัตรประชาชนไปบรรจุ
All checks were successful
Build & Deploy on Dev / build (push) Successful in 58s

This commit is contained in:
harid 2026-07-22 17:10:22 +07:00
parent 67253337a9
commit c6e396cc94
3 changed files with 336 additions and 0 deletions

View file

@ -0,0 +1,8 @@
namespace BMA.EHR.Recruit.Requests.Recruits
{
public class SelectivePlacementRequest
{
public List<string> CitizenIds { get; set; } = new();
public DateTime AccountStartDate { get; set; }
}
}