-
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.
- Loading branch information
1 parent
dc7af80
commit e3937ab
Showing
5 changed files
with
110 additions
and
112 deletions.
There are no files selected for viewing
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
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
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
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
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ private Color GetSkillColor(Skill skill) => | |
|
||
private void ClearSelectedSkills() => SelectedSkills.Clear(); | ||
|
||
private readonly ResumeModel? resumeModel = new() | ||
private readonly ResumeModel resumeModel = new() | ||
{ | ||
Name = "Michael Bond", | ||
Email = "[email protected]", | ||
|
@@ -297,17 +297,17 @@ private Color GetSkillColor(Skill skill) => | |
], | ||
}; | ||
|
||
private class ResumeModel | ||
private struct ResumeModel | ||
{ | ||
public required string Name { get; set; } | ||
|
||
public required string Email { get; set; } | ||
|
||
public required string Summary { get; set; } | ||
|
||
public required List<Skill> Skills { get; set; } = []; | ||
public required List<Skill> Skills { get; set; } | ||
|
||
public required List<Job> Jobs { get; set; } = []; | ||
public required List<Job> Jobs { get; set; } | ||
} | ||
|
||
private struct Skill | ||
|
@@ -317,7 +317,7 @@ private struct Skill | |
public string? Description { get; set; } | ||
} | ||
|
||
private class Job | ||
private struct Job | ||
{ | ||
public string? Email { get; set; } | ||
|
||
|
@@ -335,14 +335,14 @@ private class Job | |
|
||
public DateTime? EndDate { get; set; } | ||
|
||
public List<Skill> SkillsUsed { get; set; } = []; | ||
public List<Skill> SkillsUsed { get; set; } | ||
|
||
public required List<Duty> Duties { get; set; } = []; | ||
public required List<Duty> Duties { get; set; } | ||
|
||
public bool PresentlyEmployed { get; set; } | ||
} | ||
|
||
private class Duty | ||
private struct Duty | ||
{ | ||
public required string Description { get; set; } | ||
} | ||
|