| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- using Microsoft.AspNetCore.Http;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Diligent.WebAPI.Contracts.DTOs.Applicant
- {
- public class ApplyForAdRequestDto
- {
- public int AdId { get; set; }
-
- public string FirstName { get; set; }
-
- public string LastName { get; set; }
-
- public DateTime DateOfBirth { get; set; }
-
- public string PhoneNumber { get; set; }
-
- public int[] TechnologiesIds { get; set; }
-
- public int Experience { get; set; }
-
- public string LinkedinLink { get; set; }
-
- public string GithubLink { get; set; }
-
- public string BitBucketLink { get; set; }
-
- public string Email { get; set; }
-
- public string CoverLetter { get; set; }
-
- public IFormFile PdfFile { get; set; }
- public string Gender { get; set; }
- public string ProfessionalQualification { get; set; }
- }
- }
|