Files
twenty/server/src/api/@generated/workspace/workspace-max-aggregate.output.ts
T
2023-05-26 17:41:21 +02:00

28 lines
616 B
TypeScript

import { Field } from '@nestjs/graphql';
import { ObjectType } from '@nestjs/graphql';
@ObjectType()
export class WorkspaceMaxAggregate {
@Field(() => String, {nullable:true})
id?: string;
@Field(() => Date, {nullable:true})
createdAt?: Date | string;
@Field(() => Date, {nullable:true})
updatedAt?: Date | string;
@Field(() => Date, {nullable:true})
deletedAt?: Date | string;
@Field(() => String, {nullable:true})
domainName?: string;
@Field(() => String, {nullable:true})
displayName?: string;
@Field(() => String, {nullable:true})
logo?: string;
}