Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
186 Bytes
import { Field, ID, InputType } from '@nestjs/graphql';
@InputType()
export class LogicFunctionIdInput {
@Field(() => ID, { description: 'The id of the function.' })
id!: string;
}