Add fields to Employee SQL

This commit is contained in:
2025-08-07 17:10:54 -07:00
parent 3c00b10a11
commit c2886a1baf
8 changed files with 36 additions and 20 deletions
-2
View File
@@ -1,5 +1,4 @@
namespace BoredCareers.Entities {
public class Resume {
public int? ID { get; set; } // PK
public int AccountID { get; set; } // FK
@@ -106,5 +105,4 @@ namespace BoredCareers.Entities {
public string URL { get; set; } = "";
public string Description { get; set; } = "";
}
}