feat(repos): 检出相关逻辑更改为传入任务信息而不是项目信息。

This commit is contained in:
Ivan
2021-03-04 17:02:07 +08:00
parent 33b09594f5
commit f39c801fc2
9 changed files with 169 additions and 96 deletions

View File

@ -0,0 +1,6 @@
import { WorkUnit } from './work-unit.model';
export class WorkUnitMetadata {
version = 1;
units: WorkUnit[];
}