Files
boredcareers/src/Server/Entities/Employee.cs
T
2025-08-07 17:10:54 -07:00

9 lines
332 B
C#

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
}
}