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

ScheduleViewDto.cs 425B

1234567891011121314
  1. using Diligent.WebAPI.Contracts.DTOs.Applicant;
  2. using Diligent.WebAPI.Contracts.DTOs.SelectionLevel;
  3. namespace Diligent.WebAPI.Contracts.DTOs.Schedule
  4. {
  5. public class ScheduleViewDto
  6. {
  7. public DateTime? Date { get; set; }
  8. public string? Link { get; set; }
  9. public SelectionLevelResposneDto SelectionLevel { get; set; }
  10. public ApplicantScheduleViewDto Applicant { get; set; }
  11. }
  12. }