api-server-setup #1

Merged
derek merged 37 commits from api-server-setup into main 2025-07-15 21:17:25 -07:00
Showing only changes of commit ccc3bbc9b6 - Show all commits
+9
View File
@@ -12,6 +12,13 @@ namespace BoredCareers.Entities {
public string StateOrRegion { get; set; } = "";
public string City { get; set; } = "";
public bool IsActive { get; set; } = false;
public ResumeExperience[] Experience { get; set; } = [];
public ResumeMillitary Millitary { get; set; } = new ResumeMillitary();
public ResumeEducation[] Educations { get; set; } = [];
public ResumeSkill[] Skills { get; set; } = [];
public ResumeLanguage[] Languages { get; set; } = [];
public ResumeCertification[] Certification { get; set; } = [];
public ResumeProject[] Projects { get; set; } = [];
}
public class ResumeExperience {
@@ -26,6 +33,7 @@ namespace BoredCareers.Entities {
public DateTime DateStarted { get; set; } = new DateTime();
public bool StillEmployed { get; set; } = false;
public DateTime DateEnded { get; set; } = new DateTime();
public ResumeExperienceBullet[] ExperienceBullets { get; set; } = [];
}
public class ResumeExperienceBullet {
@@ -42,6 +50,7 @@ namespace BoredCareers.Entities {
public DateTime DateStarted { get; set; } = new DateTime();
public bool StillServing { get; set; } = false;
public DateTime DateEnded { get; set; } = new DateTime();
public ResumeMillitaryBullet[] MillitaryBullets = [];
}
public class ResumeMillitaryBullet {