Spaces:
Build error
Build error
twenty / packages /twenty-server /src /modules /messaging /common /standard-objects /message-thread.workspace-entity.ts
| import { BaseWorkspaceEntity } from 'src/engine/twenty-orm/base.workspace-entity'; | |
| import { type EntityRelation } from 'src/engine/workspace-manager/workspace-migration/types/entity-relation.interface'; | |
| import { type MessageWorkspaceEntity } from 'src/modules/messaging/common/standard-objects/message.workspace-entity'; | |
| export class MessageThreadWorkspaceEntity extends BaseWorkspaceEntity { | |
| subject: string | null; | |
| messages: EntityRelation<MessageWorkspaceEntity[]>; | |
| } | |