選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ApplicantProcessRequestDTO.cs 275B

12345678910
  1. namespace Diligent.WebAPI.Contracts.DTOs.Applicant
  2. {
  3. public class ApplicantProcessRequestDTO
  4. {
  5. [Required]
  6. public int ApplicantId { get; set; }
  7. public int? SchedulerId { get; set; }
  8. public DateTime? Appointment { get; set; }
  9. }
  10. }