Innovt Platform
Search Results for

    Show / Hide Table of Contents

    Class BaseUser

    Represents a base user entity.

    Inheritance
    object
    Entity
    BaseUser
    Inherited Members
    Entity.Id
    Entity.CreatedAt
    Entity.UpdatedAt
    Entity.IsNew()
    Entity.SetAsNew()
    Entity.GetHashCode()
    Entity.Equals(object)
    Entity.AddDomainEvent(DomainEvent)
    Entity.GetDomainEvents()
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Innovt.Domain.Users
    Assembly: Innovt.Domain.dll
    Syntax
    public class BaseUser : Entity

    Properties

    | Edit this page View Source

    Email

    Gets or sets the email address of the user.

    Declaration
    public virtual string Email { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    FirstName

    Gets or sets the first name of the user.

    Declaration
    public virtual string FirstName { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    IsActive

    Gets or sets a value indicating whether the user is active.

    Declaration
    public virtual bool IsActive { get; set; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    LastAccess

    Gets or sets the last access timestamp for the user.

    Declaration
    public DateTimeOffset? LastAccess { get; set; }
    Property Value
    Type Description
    DateTimeOffset?
    | Edit this page View Source

    LastName

    Gets or sets the last name of the user.

    Declaration
    public virtual string LastName { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    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
    | Edit this page View Source

    Password

    Gets or sets the password associated with the user.

    Declaration
    public virtual string Password { get; set; }
    Property Value
    Type Description
    string

    Extension Methods

    Extensions.IsNull(object)
    Extensions.ToStringOrDefault(object)
    SimpleMapper.MapTo<T1>(object)
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX