Class UserDto
- Namespace
- KadicAuth.Application.Users.DTOs
- Assembly
- KadicAuth.Application.dll
public sealed record UserDto
- Inheritance
-
object
UserDto
Constructors
UserDto(Guid, Guid?, string?, string, string, string?, string?, bool, DateTime, DateTime?, IEnumerable<UserBranchDto>, bool, DateTime?, int, bool)
public UserDto(Guid Id, Guid? TenantId, string? TenantName, string Email, string Username, string? FirstName, string? LastName, bool IsActive, DateTime CreatedAt, DateTime? LastLoginAt, IEnumerable<UserBranchDto> Branches, bool IsLockedOut, DateTime? LockoutEnd, int AccessFailedCount, bool MustChangePassword)
Parameters
Id Guid
TenantId Guid?
TenantName string
Email string
Username string
FirstName string
LastName string
IsActive bool
CreatedAt DateTime
LastLoginAt DateTime?
Branches IEnumerable<UserBranchDto>
IsLockedOut bool
LockoutEnd DateTime?
AccessFailedCount int
MustChangePassword bool
Properties
AccessFailedCount
public int AccessFailedCount { get; init; }
Property Value
- int
Branches
public IEnumerable<UserBranchDto> Branches { get; init; }
Property Value
- IEnumerable<UserBranchDto>
CreatedAt
public DateTime CreatedAt { get; init; }
Property Value
- DateTime
Email
public string Email { get; init; }
Property Value
- string
FirstName
public string? FirstName { get; init; }
Property Value
- string
Id
public Guid Id { get; init; }
Property Value
- Guid
IsActive
public bool IsActive { get; init; }
Property Value
- bool
IsLockedOut
public bool IsLockedOut { get; init; }
Property Value
- bool
LastLoginAt
public DateTime? LastLoginAt { get; init; }
Property Value
- DateTime?
LastName
public string? LastName { get; init; }
Property Value
- string
LockoutEnd
public DateTime? LockoutEnd { get; init; }
Property Value
- DateTime?
MustChangePassword
public bool MustChangePassword { get; init; }
Property Value
- bool
TenantId
public Guid? TenantId { get; init; }
Property Value
- Guid?
TenantName
public string? TenantName { get; init; }
Property Value
- string
Username
public string Username { get; init; }
Property Value
- string