Fix misspelling

This commit is contained in:
derek.holloway
2025-07-14 08:14:47 -07:00
parent b7462329c1
commit 3875622d31
3 changed files with 17 additions and 17 deletions
+4 -4
View File
@@ -42,7 +42,7 @@ namespace BoredCareers.Entities {
public string JobFunction { get; set; } = "";
}
public class ResumeMillitary {
public class ResumeMilitary {
public int ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public string Country { get; set; } = ""; // 2 Letter Country Code
@@ -50,12 +50,12 @@ 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 ResumeMilitaryBullet[] MillitaryBullets = [];
}
public class ResumeMillitaryBullet {
public class ResumeMilitaryBullet {
public int ID { get; set; } // PK
public int ResumeMillitaryID { get; set; } // FK
public int ResumeMilitaryID { get; set; } // FK
public string Achevement { get; set; } = "";
public string Description { get; set; } = "";
}