You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
256 B
14 lines
256 B
import { IsNumber, Min } from 'class-validator';
|
|
import { Type } from 'class-transformer';
|
|
|
|
export class VPagination {
|
|
@IsNumber()
|
|
@Min(0)
|
|
@Type(() => Number)
|
|
page: number = 0;
|
|
|
|
@IsNumber()
|
|
@Min(1)
|
|
@Type(() => Number)
|
|
limit: number = 10;
|
|
}
|