1
0

feat: allow selecting a parent project when duplicating a project

This commit is contained in:
kolaente
2023-03-29 16:19:58 +02:00
parent 760efa854d
commit 799c0be830
3 changed files with 18 additions and 2 deletions

View File

@ -4,4 +4,5 @@ import type {IProject} from './IProject'
export interface IProjectDuplicate extends IAbstract {
projectId: number
project: IProject
parentProjectId: number
}