Table of Contents

Class User

Namespace
adas_core.Domain.Models.MongoModels
Assembly
adas-core.Domain.dll

Represents a user within the system, encapsulating user-related data and behavior.

public class User
Inheritance
User
Inherited Members
Extension Methods

Properties

Authorization

public List<Authorization>? Authorization { get; set; }

Property Value

List<Authorization>

Email

public string Email { get; set; }

Property Value

string

Id

public ObjectId Id { get; set; }

Property Value

ObjectId

IpAddress

public string IpAddress { get; set; }

Property Value

string

IsEnabled

public bool IsEnabled { get; set; }

Property Value

bool

LastLogin

public DateTime? LastLogin { get; set; }

Property Value

DateTime?

LockExpirationDate

public DateTime? LockExpirationDate { get; set; }

Property Value

DateTime?

Name

public string Name { get; set; }

Property Value

string

Password

public string Password { get; set; }

Property Value

string

Type

public UserEnum.Type Type { get; set; }

Property Value

UserEnum.Type

UserName

public string UserName { get; set; }

Property Value

string