//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace EnVisage
{
using System;
using System.Collections.Generic;
public partial class AspNetUser
{
public AspNetUser()
{
this.AspNetRoles = new HashSet();
this.PasswordResetRequests = new HashSet();
this.User2Team = new HashSet();
}
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 AspNetRoles { get; set; }
public virtual ICollection PasswordResetRequests { get; set; }
public virtual ICollection User2Team { get; set; }
}
}