User

Namespace: Babel.Data Assembly: Babel.Data.dll

Represents a user entity with additional properties.

public class User : IdentityUser

Inheritance

objectIdentityUser<string>IdentityUserUser

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

string

ApiKeys

Gets or sets the user api keys.

public virtual ICollection<ApiKey> ApiKeys { get; set; }

Property Value

ICollection<ApiKey>

BirthDate

Gets or sets the birth date of the user.

public DateTime? BirthDate { get; set; }

Property Value

DateTime?

City

Gets or sets the city of the user.

public string City { get; set; }

Property Value

string

Country

Gets or sets the country of the user.

public string Country { get; set; }

Property Value

string

CountryCode

Gets or sets the country code of the user.

public string CountryCode { get; set; }

Property Value

string

CreatedAt

Gets or sets the creation date of the user.

public DateTime? CreatedAt { get; set; }

Property Value

DateTime?

Customer

Gets or sets the customer associated with the user.

[ForeignKey("CustomerId")]
public virtual Customer Customer { get; set; }

Property Value

Customer

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

string

Downloads

Gets or sets the downloads associated with the user.

public virtual ICollection<Download> Downloads { get; set; }

Property Value

ICollection<Download>

FirstName

Gets or sets the first name of the user.

public string FirstName { get; set; }

Property Value

string

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

DateTime?

LastLogIn

Gets or sets the date of the last login of the user.

public DateTime? LastLogIn { get; set; }

Property Value

DateTime?

LastName

Gets or sets the last name of the user.

public string LastName { get; set; }

Property Value

string

Mobile

Gets or sets the mobile number of the user.

public string Mobile { get; set; }

Property Value

string

Notes

Gets or sets the notes of the user.

public string Notes { get; set; }

Property Value

string

Orders

Gets or sets the orders associated with the user.

public virtual ICollection<Order> Orders { get; set; }

Property Value

ICollection<Order>

PostalCode

Gets or sets the postal code of the user.

public string PostalCode { get; set; }

Property Value

string

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

string

Settings

Gets or sets the settings associated with the user.

public virtual ICollection<Setting> Settings { get; set; }

Property Value

ICollection<Setting>

Title

Gets or sets the title of the user.

public string Title { get; set; }

Property Value

string

UpdatedAt

Gets or sets the last update date of the user.

public DateTime? UpdatedAt { get; set; }

Property Value

DateTime?

Last updated