You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
774 B
22 lines
774 B
namespace ComponentPractice.Models
|
|
{
|
|
public class Employee
|
|
{
|
|
public int ID { get; set; }
|
|
public string Photo { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public string Job { get; set; }
|
|
public string Title { get; set; }
|
|
public DateTime BirthDate { get; set; }
|
|
public DateTime HireDate { get; set; }
|
|
public string Address { get; set; }
|
|
public string City { get; set; }
|
|
public string Region { get; set; }
|
|
public string PostalCode { get; set; }
|
|
public string County { get; set; }
|
|
public string Phone { get; set; }
|
|
public string Extension { get; set; }
|
|
public string Notes { get; set; }
|
|
}
|
|
}
|
|
|