1234567891011121314151617181920 |
- 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<UserAddress> Addresses { get; set; }
- }
- }
|