User
Namespace: Babel.Data Assembly: Babel.Data.dll
Represents a user entity with additional properties.
public class User : IdentityUserInheritance
object ← IdentityUser<string> ← IdentityUser ← User
Inherited Members
IdentityUser<string>.ToString(), IdentityUser<string>.Id, IdentityUser<string>.UserName, IdentityUser<string>.NormalizedUserName, IdentityUser<string>.Email, IdentityUser<string>.NormalizedEmail, IdentityUser<string>.EmailConfirmed, IdentityUser<string>.PasswordHash, IdentityUser<string>.SecurityStamp, IdentityUser<string>.ConcurrencyStamp, IdentityUser<string>.PhoneNumber, IdentityUser<string>.PhoneNumberConfirmed, IdentityUser<string>.TwoFactorEnabled, IdentityUser<string>.LockoutEnd, IdentityUser<string>.LockoutEnabled, IdentityUser<string>.AccessFailedCount, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
User()
public User()Properties
Address
Gets or sets the address of the user.
public string Address { get; set; }Property Value
ApiKeys
Gets or sets the user api keys.
public virtual ICollection<ApiKey> ApiKeys { get; set; }Property Value
BirthDate
Gets or sets the birth date of the user.
public DateTime? BirthDate { get; set; }Property Value
City
Gets or sets the city of the user.
public string City { get; set; }Property Value
Country
Gets or sets the country of the user.
public string Country { get; set; }Property Value
CountryCode
Gets or sets the country code of the user.
public string CountryCode { get; set; }Property Value
CreatedAt
Gets or sets the creation date of the user.
public DateTime? CreatedAt { get; set; }Property Value
Customer
Gets or sets the customer associated with the user.
[ForeignKey("CustomerId")]
public virtual Customer Customer { get; set; }Property Value
CustomerId
Gets or sets the ID of the customer associated with the user.
public int? CustomerId { get; set; }Property Value
int?
Department
Gets or sets the department of the user.
public string Department { get; set; }Property Value
Downloads
Gets or sets the downloads associated with the user.
public virtual ICollection<Download> Downloads { get; set; }Property Value
FirstName
Gets or sets the first name of the user.
public string FirstName { get; set; }Property Value
Image
Gets or sets the image of the user.
public byte[] Image { get; set; }Property Value
byte[]
LastDismissMessages
Gets or sets the date of the last dismissed messages of the user.
public DateTime? LastDismissMessages { get; set; }Property Value
LastLogIn
Gets or sets the date of the last login of the user.
public DateTime? LastLogIn { get; set; }Property Value
LastName
Gets or sets the last name of the user.
public string LastName { get; set; }Property Value
Mobile
Gets or sets the mobile number of the user.
public string Mobile { get; set; }Property Value
Notes
Gets or sets the notes of the user.
public string Notes { get; set; }Property Value
Orders
Gets or sets the orders associated with the user.
public virtual ICollection<Order> Orders { get; set; }Property Value
PostalCode
Gets or sets the postal code of the user.
public string PostalCode { get; set; }Property Value
Rank
Gets or sets the rank of the user.
public int? Rank { get; set; }Property Value
int?
Region
Gets or sets the region of the user.
public string Region { get; set; }Property Value
Settings
Gets or sets the settings associated with the user.
public virtual ICollection<Setting> Settings { get; set; }Property Value
Title
Gets or sets the title of the user.
public string Title { get; set; }Property Value
UpdatedAt
Gets or sets the last update date of the user.
public DateTime? UpdatedAt { get; set; }Property Value
Last updated