8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { IsString } from 'class-validator';
|
|
|
|
export class GetLeagueJoinRequestsQueryDTO {
|
|
@ApiProperty()
|
|
@IsString()
|
|
leagueId: string;
|
|
} |