Add Title and Veteran to DB
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user