17 lines
318 B
TypeScript
17 lines
318 B
TypeScript
import { Type } from "class-transformer";
|
|
import { IsInt, IsOptional, IsString, Max, MaxLength, Min } from "class-validator";
|
|
|
|
export class SyncPullQueryDto {
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(512)
|
|
cursor?: string;
|
|
|
|
@Type(() => Number)
|
|
@IsOptional()
|
|
@IsInt()
|
|
@Min(1)
|
|
@Max(200)
|
|
limit?: number;
|
|
}
|