Files
gridpilot.gg/apps/api/src/domain/league/dtos/RemoveLeagueMemberInputDTO.ts

16 lines
308 B
TypeScript

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;
}