import { Attr } from 'ts-framework' import { VehicleResponseDTO } from './vehicle' export class CreateVehicleCapacityDTO { @Attr({ type: Number }) amble: number @Attr({ type: Number, optional: true }) cot?: number @Attr({ type: String }) vehicleId: string @Attr({ type: Number, optional: true }) wheelchair?: number } export class VehicleCapacityDTO { @Attr({ type: Number }) amble: number @Attr({ type: Number }) cot: number @Attr({ type: Number }) wheelchair: number } export class VehicleCapacityResponseDTO { id: string amble: number cot: number wheelchair: number vehicleId: string }