/** * DTO for changing user password */ export class ChangeUserPasswordRequestDto { userId?: string; password?: string; }