using ProRestaurant.Classes; using System.Collections.Generic; namespace ProRestaurant.Models.Accounts { public class User : BaseObject { public string EmailAddress { get; set; } public string Password { get; set; } public string FirstName { get; set; } public string Surname { get; set; } public string Cellphone { get; set; } public SystemRole SystemRole { get; set; } public bool ChangePassword { get; set; } public virtual DriverDetail DriverDetails { get; set; } public ICollection Addresses { get; set; } } }