Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ApplicantScheduleViewDto.cs 248B

123456789
  1. namespace Diligent.WebAPI.Contracts.DTOs.Applicant
  2. {
  3. public class ApplicantScheduleViewDto
  4. {
  5. public int ApplicantId { get; set; }
  6. public string FirstName { get; set; }
  7. public string LastName { get; set; }
  8. }
  9. }