mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-27 13:04:54 +00:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { PaginationRequestGetListDto } from '@app/common/dto/pagination.request.dto';
|
|
import { PickType } from '@nestjs/swagger';
|
|
|
|
export class ListProjectsDto extends PickType(PaginationRequestGetListDto, [
|
|
'page',
|
|
'size',
|
|
]) {}
|