import { GqlSchemaDto, GqlSchemaInterface } from "../schema/GqlSchemaTypes"; export interface EventDomainInterface { id?: string; name?: string; schema?: GqlSchemaInterface[]; } export interface EventDomainDto extends EventDomainInterface { id: string; name: string; schema?: GqlSchemaDto[]; }