Add response email to application

This commit is contained in:
2025-08-04 17:39:29 -07:00
parent 0a71162162
commit ca21bd6c5b
4 changed files with 13 additions and 2 deletions
+1
View File
@@ -4,6 +4,7 @@ namespace BoredCareers.Entities {
public int AccountID { get; set; } // FK
public int ResumeID { get; set; } // FK
public int JobListingID { get; set; } // FK
public string ResponseEmail { get; set; } = "";
public DateTime DateApplied { get; set; }
public string ResponseStatus { get; set; } = "";
public bool HasBeenViewed { get; set; } = false;