Skip to content

Commit

Permalink
Feat:
Browse files Browse the repository at this point in the history
- Add CertificationDto.cs, ExperienceDto.cs, LanguageDto.cs, SkillDto.cs
  • Loading branch information
steniojoseph27 committed Oct 13, 2024
1 parent ce81042 commit 0d5e5a2
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace ResumeParsingService.Application.DTOs
{
public class CertificationDto
{
public string Title { get; set; } = string.Empty;
public string IssuingOrganization { get; set; } = string.Empty;
public DateTime IssueDate { get; set; }
public DateTime? ExpiryDate { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
namespace ResumeParsingService.Application.DTOs
{
public class ExperienceDto
{
public string JobTitle { get; set; } = string.Empty;
public string CompanyName { get; set; } = string.Empty;
public DateTime StartDate { get; set; }
public DateTime? EndDate { get; set; }
public List<string> Responsibilities { get; set; } = new();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace ResumeParsingService.Application.DTOs
{
public class LanguageDto
{
public string LanguageName { get; set; } = string.Empty;
public string ProficiencyLevel { get; set; } = string.Empty;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace ResumeParsingService.Application.DTOs
{
public class SkillDto
{
public string Name { get; set; } = string.Empty;
public int ProficiencyLevel { get; set; }
}
}

0 comments on commit 0d5e5a2

Please sign in to comment.