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

export class DeclineTripDto {
  @ApiProperty({ description: "The ID of the trip to decline" })
  @IsNumber()
  trip_id: number

  @ApiProperty({ description: "The ID of the driver declining the trip" })
  @IsNumber()
  driver_id: number
}
