Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public partial class AspNetUser
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public AspNetUser()
- {
- this.UserToProjects = new HashSet<UserToProject>();
- this.UserToRegions = new HashSet<UserToRegion>();
- }
- public string Id { get; set; }
- public string Email { get; set; }
- public bool EmailConfirmed { get; set; }
- public string PasswordHash { get; set; }
- public string SecurityStamp { get; set; }
- public string PhoneNumber { get; set; }
- public bool PhoneNumberConfirmed { get; set; }
- public bool TwoFactorEnabled { get; set; }
- public Nullable<System.DateTime> LockoutEndDateUtc { get; set; }
- public bool LockoutEnabled { get; set; }
- public int AccessFailedCount { get; set; }
- public string UserName { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<UserToProject> UserToProjects { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<UserToRegion> UserToRegions { get; set; }
- }
Add Comment
Please, Sign In to add comment