34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class AspNetUser
|
|
{
|
|
public AspNetUser()
|
|
{
|
|
this.AspNetUserClaims = new List<AspNetUserClaim>();
|
|
this.AspNetUserLogins = new List<AspNetUserLogin>();
|
|
this.PasswordResetRequests = new List<PasswordResetRequest>();
|
|
this.User2Team = new List<User2Team>();
|
|
this.AspNetRoles = new List<AspNetRole>();
|
|
}
|
|
|
|
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<AspNetUserClaim> AspNetUserClaims { get; set; }
|
|
public virtual ICollection<AspNetUserLogin> AspNetUserLogins { get; set; }
|
|
public virtual ICollection<PasswordResetRequest> PasswordResetRequests { get; set; }
|
|
public virtual ICollection<User2Team> User2Team { get; set; }
|
|
public virtual ICollection<AspNetRole> AspNetRoles { get; set; }
|
|
}
|
|
}
|