using System; using System.Collections.Generic; namespace IntegrationTests.Models { public partial class AspNetUser { public AspNetUser() { this.AspNetUserClaims = new List(); this.AspNetUserLogins = new List(); this.PasswordResetRequests = new List(); this.User2Team = new List(); this.AspNetRoles = new List(); } public string Id { get; set; } public string UserName { get; set; } public string PasswordHash { get; set; } public string SecurityStamp { get; set; } public string Discriminator { get; set; } public string Email { get; set; } public string Phone { get; set; } public short Type { get; set; } public bool PreferredResourceAllocation { get; set; } public string PagePreferences { get; set; } public virtual ICollection AspNetUserClaims { get; set; } public virtual ICollection AspNetUserLogins { get; set; } public virtual ICollection PasswordResetRequests { get; set; } public virtual ICollection User2Team { get; set; } public virtual ICollection AspNetRoles { get; set; } } }