Class BaseUser
Represents a base user entity.
Inherited Members
Namespace: Innovt.Domain.Users
Assembly: Innovt.Domain.dll
Syntax
public class BaseUser : Entity
Properties
| Edit this page View SourceGets or sets the email address of the user.
Declaration
public virtual string Email { get; set; }
Property Value
Type | Description |
---|---|
string |
FirstName
Gets or sets the first name of the user.
Declaration
public virtual string FirstName { get; set; }
Property Value
Type | Description |
---|---|
string |
IsActive
Gets or sets a value indicating whether the user is active.
Declaration
public virtual bool IsActive { get; set; }
Property Value
Type | Description |
---|---|
bool |
LastAccess
Gets or sets the last access timestamp for the user.
Declaration
public DateTimeOffset? LastAccess { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
LastName
Gets or sets the last name of the user.
Declaration
public virtual string LastName { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Gets the full name of the user by combining the first and last names.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
string |
Password
Gets or sets the password associated with the user.
Declaration
public virtual string Password { get; set; }
Property Value
Type | Description |
---|---|
string |