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

SelectionProcessResposneWithoutApplicantDto.cs 484B

1234567891011121314
  1. using Diligent.WebAPI.Contracts.DTOs.SelectionLevel;
  2. using Diligent.WebAPI.Contracts.DTOs.User;
  3. namespace Diligent.WebAPI.Contracts.DTOs.SelectionProcess
  4. {
  5. public class SelectionProcessResposneWithoutApplicantDto
  6. {
  7. public string Status { get; set; }
  8. public DateTime? Date { get; set; }
  9. public string? Link { get; set; }
  10. public UserResponseDTO User { get; set; }
  11. public SelectionLevelResposneDto SelectionLevel { get; set; }
  12. }
  13. }