// annual transport business summary dto
import { ApiProperty } from "@nestjs/swagger"
import { IsOptional, IsString } from "class-validator"

export class AnnualTransportBusinessSummaryDto {
  @IsString()
  @IsOptional()
  @ApiProperty({ type: String, required: false })
  year: string

  @IsString()
  @IsOptional()
  @ApiProperty({ type: String, required: false })
  search: string

  @IsString()
  @IsOptional()
  @ApiProperty({ type: String, required: false })
  skip: string

  @IsString()
  @IsOptional()
  @ApiProperty({ type: String, required: false })
  limit: string

  @IsString()
  @IsOptional()
  @ApiProperty({ type: String, required: false })
  is_export: string
}
