Table of Contents

Class UpdateUserWithAuthDto

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

Represents a data transfer object used to update a user along with their authentication details.

public class UpdateUserWithAuthDto
Inheritance
UpdateUserWithAuthDto
Inherited Members
Extension Methods

Remarks

This DTO is typically used to transfer user account and authentication information in update operations.

Properties

Authorizations

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

Property Value

List<Authorization>

AuthsToDelete

public List<string> AuthsToDelete { get; set; }

Property Value

List<string>

NewAuthorizations

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

Property Value

List<Authorization>

User

public User User { get; set; }

Property Value

User