AppUser.cs 250 B

12345678910
  1. namespace ComputerShopWpf.Models
  2. {
  3. public class AppUser
  4. {
  5. public int UserId { get; set; }
  6. public string Login { get; set; }
  7. public string PasswordHash { get; set; }
  8. public string RoleName { get; set; }
  9. }
  10. }