hikma-engine
Version:
Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents
14 lines (13 loc) • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PhaseStatusDTO = void 0;
const base_dto_1 = require("./base.dto");
class PhaseStatusDTO extends base_dto_1.BaseDTO {
constructor(id, repo_id, phase_name, status = 'pending') {
super(id);
this.repo_id = repo_id;
this.phase_name = phase_name;
this.status = status;
}
}
exports.PhaseStatusDTO = PhaseStatusDTO;