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
User email.
public string Email { get; set; }
Property Value
FullName
User full name.
public string FullName { get; set; }
Property Value
Id
User id.
public string Id { get; set; }
Property Value
IsActive
True when the user account is active.
public bool IsActive { get; set; }
Property Value
IsAdmin
True when user has administrator privileges.
public bool IsAdmin { get; }
Property Value
IsGod
True when user has god privileges.
public bool IsGod { get; }
Property Value
LanguageCode
Preferred language code, e.g. en, el.
public string LanguageCode { get; set; }
Property Value
LastLoginAt
Last login date and time.
public DateTime LastLoginAt { get; set; }
Property Value
Phone
User phone.
public string Phone { get; set; }
Property Value
Properties
A bag of custom properties.
public Dictionary<string, object> Properties { get; }
Property Value
Remarks
User remarks.
public string Remarks { get; set; }
Property Value
UserLevel
User level.
public UserLevel UserLevel { get; set; }
Property Value
UserName
User name.
public string UserName { get; set; }