Files
twenty/server/src/api/@generated/pipeline/pipeline-count.output.ts
2023-06-02 12:39:58 +02:00

13 lines
313 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ObjectType } from '@nestjs/graphql';
import { Int } from '@nestjs/graphql';
@ObjectType()
export class PipelineCount {
@Field(() => Int, { nullable: false })
pipelineStages?: number;
@Field(() => Int, { nullable: false })
pipelineProgresses?: number;
}