Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789101112131415161718192021 |
- using ProRestaurant.Models.Accounts;
-
- namespace ProRestaurant.Containers
- {
- public class UserContainer : User
- {
- public string ResultString { get; set; }
- }
-
- public class AuthenticationContiner
- {
- public int ID { get; set; }
- public string Name { get; set; }
- public string Surname { get; set; }
- public string EmailAddress { get; set; }
- public string Password { get; set; }
- public string Role { get; set; }
- public string Result { get; set; }
- public string Token { get; set; }
- }
- }
|