You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }