11 lines
237 B
C#
11 lines
237 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace BMA.EHR.Recurit.Exam.Service.Request
|
||
|
|
{
|
||
|
|
public class SelectivePlacementRequest
|
||
|
|
{
|
||
|
|
public List<string> CitizenIds { get; set; } = new();
|
||
|
|
public DateTime AccountStartDate { get; set; }
|
||
|
|
}
|
||
|
|
}
|