How to import only several classes from the same package ?

Scala provides an interesting feature of importing different classes from the same package by using {} clause. If we wan to import classes PersonDto and WorkerDto from package com.waitingforcode.dto, we could simply write:

import com.waitingforcode.dto.{PersonDto, WorkerDto}