Table of Contents

Class CreateUserDto

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

Constructors

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

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

Parameters

Email string
Username string
Password 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

Password

public string Password { 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