Files
stack/apps/orchestrator/src/api/agents/dto/agent-tree-response.dto.ts
T

10 lines
226 B
TypeScript

export class AgentTreeResponseDto {
sessionId!: string;
parentSessionId!: string | null;
status!: string;
agentType!: string | null;
taskSource!: string | null;
spawnedAt!: string;
completedAt!: string | null;
}