9 lines
332 B
C#
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
|
|
}
|
|
} |