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.

123456789101112131415161718192021
  1. using ProRestaurant.Models.Accounts;
  2. namespace ProRestaurant.Containers
  3. {
  4. public class UserContainer : User
  5. {
  6. public string ResultString { get; set; }
  7. }
  8. public class AuthenticationContiner
  9. {
  10. public int ID { get; set; }
  11. public string Name { get; set; }
  12. public string Surname { get; set; }
  13. public string EmailAddress { get; set; }
  14. public string Password { get; set; }
  15. public string Role { get; set; }
  16. public string Result { get; set; }
  17. public string Token { get; set; }
  18. }
  19. }