9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import { InputType } from '@nestjs/graphql';
|
|
import { IsUUID } from 'class-validator';
|
|
|
|
@InputType()
|
|
export class ListBranchesArgs {
|
|
@IsUUID()
|
|
projectId: string;
|
|
}
|