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

AdApplicantsViewDto.cs 367B

123456789101112
  1. using Diligent.WebAPI.Contracts.DTOs.Applicant;
  2. namespace Diligent.WebAPI.Contracts.DTOs.Ad
  3. {
  4. public class AdApplicantsViewDto
  5. {
  6. public int Id { get; set; }
  7. public string Title { get; set; }
  8. public List<AdApplicantViewDto> Applicants { get; set; }
  9. public int NubmerOfApplicants { get { return Applicants.Count; } }
  10. }
  11. }