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.

1234567891011121314151617181920
  1. using ProRestaurant.Classes;
  2. using System.Collections.Generic;
  3. namespace ProRestaurant.Models.Accounts
  4. {
  5. public class User : BaseObject
  6. {
  7. public string EmailAddress { get; set; }
  8. public string Password { get; set; }
  9. public string FirstName { get; set; }
  10. public string Surname { get; set; }
  11. public string Cellphone { get; set; }
  12. public SystemRole SystemRole { get; set; }
  13. public bool ChangePassword { get; set; }
  14. public virtual DriverDetail DriverDetails { get; set; }
  15. public ICollection<UserAddress> Addresses { get; set; }
  16. }
  17. }