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
+9
View File
@@ -0,0 +1,9 @@
namespace BoredCareers.Entities {
public class Employee {
public int? ID { get; set; } // PK
public int AccountID { get; set; }
public string AccountName { get; set; } = "";
public string AccountEmail { get; set; } = "";
public Company Company { get; set; } = new Company(); // FK
}
}