mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-08-26 07:49:39 +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',
|
|
]) {}
|