您最多选择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. }