EnVisageOnline/Main/Source/EnVisage/AspNetUser.cs

56 lines
2.4 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace EnVisage
{
using System;
using System.Collections.Generic;
public partial class AspNetUser
{
public AspNetUser()
{
this.PasswordResetRequests = new HashSet<PasswordResetRequest>();
this.User2Team = new HashSet<User2Team>();
this.User2WorkFlowRole = new HashSet<User2WorkFlowRole>();
this.AspNetRoles = new HashSet<AspNetRole>();
this.AspNetUserClaims = new HashSet<AspNetUserClaim>();
}
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 PhoneNumber { get; set; }
public short Type { get; set; }
public bool PreferredResourceAllocation { get; set; }
public bool PreferredTotalsDisplaying { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public Nullable<System.DateTime> LastLoginDate { get; set; }
public Nullable<System.DateTime> LoginDate { get; set; }
public decimal OverUnderCoefficient { get; set; }
public bool ShowAutomaticViews { get; set; }
public bool EmailConfirmed { 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 virtual ICollection<PasswordResetRequest> PasswordResetRequests { get; set; }
public virtual ICollection<User2Team> User2Team { get; set; }
public virtual ICollection<User2WorkFlowRole> User2WorkFlowRole { get; set; }
public virtual ICollection<AspNetRole> AspNetRoles { get; set; }
public virtual ICollection<AspNetUserClaim> AspNetUserClaims { get; set; }
}
}