Table of Contents

Class AppUser

Namespace
Tripous
Assembly
Tripous.dll

Represents a user of this application

public sealed class AppUser
Inheritance
AppUser
Inherited Members
Extension Methods

Properties

CultureCode

Preferred culture code, e.g. en-US, el-GR.

public string CultureCode { get; set; }

Property Value

string

Email

User email.

public string Email { get; set; }

Property Value

string

FullName

User full name.

public string FullName { get; set; }

Property Value

string

Id

User id.

public string Id { get; set; }

Property Value

string

IsActive

True when the user account is active.

public bool IsActive { get; set; }

Property Value

bool

IsAdmin

True when user has administrator privileges.

public bool IsAdmin { get; }

Property Value

bool

IsGod

True when user has god privileges.

public bool IsGod { get; }

Property Value

bool

LanguageCode

Preferred language code, e.g. en, el.

public string LanguageCode { get; set; }

Property Value

string

LastLoginAt

Last login date and time.

public DateTime LastLoginAt { get; set; }

Property Value

DateTime

Phone

User phone.

public string Phone { get; set; }

Property Value

string

Properties

A bag of custom properties.

public Dictionary<string, object> Properties { get; }

Property Value

Dictionary<string, object>

Remarks

User remarks.

public string Remarks { get; set; }

Property Value

string

UserLevel

User level.

public UserLevel UserLevel { get; set; }

Property Value

UserLevel

UserName

User name.

public string UserName { get; set; }

Property Value

string