import { ApiProperty } from '@nestjs/swagger'; import { IsString } from 'class-validator'; export class RemoveLeagueMemberInputDTO { @ApiProperty() @IsString() leagueId!: string; @ApiProperty() @IsString() performerDriverId!: string; @ApiProperty() @IsString() targetDriverId!: string; }