-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add CertificationDto.cs, ExperienceDto.cs, LanguageDto.cs, SkillDto.cs
- Loading branch information
1 parent
ce81042
commit 0d5e5a2
Showing
4 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
Services/ResumeParsingService/ResumeParsingService.Application/Models/CertificationDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Services/ResumeParsingService/ResumeParsingService.Application/Models/ExperienceDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
Services/ResumeParsingService/ResumeParsingService.Application/Models/LanguageDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
Services/ResumeParsingService/ResumeParsingService.Application/Models/SkillDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; } | ||
} | ||
} |