using Diligent.WebAPI.Contracts.DTOs.Technology; namespace Diligent.WebAPI.Contracts.DTOs.Applicant { public class AdApplicantViewDto { public int ApplicantId { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public DateTime DateOfApplication { get; set; } public string CV { get; set; } public int Experience { get; set; } public List TechnologyApplicants { get; set; } = new(); } }