Class UpdateUserWithAuthDto
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
AuthsToDelete
public List<string> AuthsToDelete { get; set; }
Property Value
NewAuthorizations
public List<Authorization> NewAuthorizations { get; set; }
Property Value
User
public User User { get; set; }