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.

User.cs 636B

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