nestjs-starter
Version:
Get started for beginners with Nestjs
46 lines (38 loc) • 790 B
text/typescript
import {
IsOptional,
IsString,
IsNumber,
Max,
IsBooleanString,
} from 'class-validator';
import { ApiPropertyOptional } from '@nestjs/swagger';
import { Type } from 'class-transformer';
export class QueryLanguage {
readonly name: string;
readonly iconId: string;
readonly status: boolean;
readonly email: string;
readonly page: number;
readonly limit: number;
route?: string;
}