Table of Contents

Class UpdateUserDto

Namespace
KadicAuth.Application.Users.DTOs
Assembly
KadicAuth.Application.dll
public sealed record UpdateUserDto
Inheritance
object
UpdateUserDto

Constructors

UpdateUserDto(string?, string?, string?, string?, Guid?, IEnumerable<Guid>?)

public UpdateUserDto(string? Email = null, string? Username = null, string? FirstName = null, string? LastName = null, Guid? TenantBranchId = null, IEnumerable<Guid>? RoleIds = null)

Parameters

Email string
Username string
FirstName string
LastName string
TenantBranchId Guid?
RoleIds IEnumerable<Guid>

Properties

Email

public string? Email { get; init; }

Property Value

string

FirstName

public string? FirstName { get; init; }

Property Value

string

LastName

public string? LastName { get; init; }

Property Value

string

RoleIds

public IEnumerable<Guid>? RoleIds { get; init; }

Property Value

IEnumerable<Guid>

TenantBranchId

public Guid? TenantBranchId { get; init; }

Property Value

Guid?

Username

public string? Username { get; init; }

Property Value

string