Guest User

Untitled

a guest
Mar 30th, 2018
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.36 KB | None | 0 0
  1.  public partial class AspNetUser
  2.     {
  3.         [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  4.         public AspNetUser()
  5.         {
  6.             this.UserToProjects = new HashSet<UserToProject>();
  7.             this.UserToRegions = new HashSet<UserToRegion>();
  8.         }
  9.    
  10.         public string Id { get; set; }
  11.         public string Email { get; set; }
  12.         public bool EmailConfirmed { get; set; }
  13.         public string PasswordHash { get; set; }
  14.         public string SecurityStamp { get; set; }
  15.         public string PhoneNumber { get; set; }
  16.         public bool PhoneNumberConfirmed { get; set; }
  17.         public bool TwoFactorEnabled { get; set; }
  18.         public Nullable<System.DateTime> LockoutEndDateUtc { get; set; }
  19.         public bool LockoutEnabled { get; set; }
  20.         public int AccessFailedCount { get; set; }
  21.         public string UserName { get; set; }
  22.    
  23.         [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  24.         public virtual ICollection<UserToProject> UserToProjects { get; set; }
  25.         [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  26.         public virtual ICollection<UserToRegion> UserToRegions { get; set; }
  27.     }
Add Comment
Please, Sign In to add comment