Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.15 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5.  
  6. namespace ProbeSeeker.Models
  7. {
  8.     public class AspNetUsersModel
  9.     {
  10.         public string Id { get; set; }
  11.  
  12.         public string UserName { get; set; }
  13.  
  14.         public string NormalizedUserName { get; set; }
  15.  
  16.         public string Email { get; set; }
  17.  
  18.         public string NormalizedEmail { get; set; }
  19.  
  20.         public bool EmailConfirmed { get; set; }
  21.  
  22.         public string PasswordHash { get; set; }
  23.  
  24.         public string SecurityStamp { get; set; }
  25.  
  26.         public string ConcurrencyStamp { get; set; }
  27.  
  28.         public string PhoneNumber { get; set; }
  29.  
  30.         public bool PhoneNumberConfirmed { get; set; }
  31.  
  32.         public bool TwoFactorEnabled { get; set; }
  33.  
  34.         public DateTimeOffset? LockoutEnd { get; set; }
  35.  
  36.         public bool LockoutEnabled { get; set; }
  37.  
  38.         public int AccessFailedCount { get; set; }
  39.  
  40.         public ICollection<UserRoleModel> UserRoles { get; set; }
  41.         public override string ToString()
  42.         {
  43.             return "{" + UserName + ";" + PhoneNumber + "}";
  44.         }
  45.  
  46.     }
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement