import { IsInt } from "class-validator"
import { ApiProperty } from "@nestjs/swagger"

export class PaginationDto {
  @ApiProperty({
    description: "Limit",
    example: "10",
  })
  @IsInt()
  limit: number

  @ApiProperty({
    description: "Skip",
    example: "0",
  })
  @IsInt()
  skip: number
}
