Table of Contents

Class CreateUserWithRolesRequest

Namespace
KadicAuth.Api.Models
Assembly
KadicAuth.Api.dll
public sealed record CreateUserWithRolesRequest
Inheritance
object
CreateUserWithRolesRequest

Constructors

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

public CreateUserWithRolesRequest(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