api-server-setup #1
@@ -13,7 +13,7 @@ namespace BoredCareers.Entities {
|
||||
public string City { get; set; } = "";
|
||||
public bool IsActive { get; set; } = false;
|
||||
public ResumeExperience[] Experience { get; set; } = [];
|
||||
public ResumeMillitary Millitary { get; set; } = new ResumeMillitary();
|
||||
public ResumeMilitary Millitary { get; set; } = new ResumeMilitary();
|
||||
public ResumeEducation[] Educations { get; set; } = [];
|
||||
public ResumeSkill[] Skills { get; set; } = [];
|
||||
public ResumeLanguage[] Languages { get; set; } = [];
|
||||
@@ -38,6 +38,7 @@ namespace BoredCareers.Entities {
|
||||
|
||||
public class ResumeExperienceBullet {
|
||||
public int ID { get; set; } // PK
|
||||
public int ResumeID { get; set; } // FK
|
||||
public int ResumeExperienceID { get; set; } // FK
|
||||
public string JobFunction { get; set; } = "";
|
||||
}
|
||||
@@ -55,6 +56,7 @@ namespace BoredCareers.Entities {
|
||||
|
||||
public class ResumeMilitaryBullet {
|
||||
public int ID { get; set; } // PK
|
||||
public int ResumeID { get; set; } // FK
|
||||
public int ResumeMilitaryID { get; set; } // FK
|
||||
public string Achevement { get; set; } = "";
|
||||
public string Description { get; set; } = "";
|
||||
|
||||
Reference in New Issue
Block a user