Add Title and Veteran to DB

This commit is contained in:
2025-08-11 21:27:20 -07:00
parent 07fca50876
commit 1054c595bf
6 changed files with 53 additions and 16 deletions
+2
View File
@@ -2,6 +2,7 @@ namespace BoredCareers.Entities {
public class Resume {
public int? ID { get; set; } // PK
public int AccountID { get; set; } // FK
public string Title { get; set; } = "";
public string Name { get; set; } = "";
public string Field { get; set; } = "";
public string Email { get; set; } = "";
@@ -45,6 +46,7 @@ namespace BoredCareers.Entities {
public class ResumeMilitary {
public int? ID { get; set; } // PK
public int ResumeID { get; set; } // FK
public bool Veteran { get; set; } = false;
public string Country { get; set; } = ""; // 2 Letter Country Code
public string Rank { get; set; } = "";
public DateTime DateStarted { get; set; } = new DateTime();