From 6a018a5d22f9e2132322c28a92cfe273d8d4fedd Mon Sep 17 00:00:00 2001
From: Petar Hristov <hristov@itc.rwth-aachen.de>
Date: Mon, 11 Nov 2024 09:37:45 +0000
Subject: [PATCH] New: Added copy owner property (coscine/issues#2727)

---
 src/Coscine.Api/@coscine/model/project-for-creation-dto.ts | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts b/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts
index e92b6e9..7e6937f 100644
--- a/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts
+++ b/src/Coscine.Api/@coscine/model/project-for-creation-dto.ts
@@ -101,5 +101,11 @@ export interface ProjectForCreationDto {
      * @memberof ProjectForCreationDto
      */
     'parentId'?: string | null;
+    /**
+     * Gets or initializes if the owners of the parent project should be copied to the sub project.
+     * @type {boolean}
+     * @memberof ProjectForCreationDto
+     */
+    'copyOwnersFromParent'?: boolean | null;
 }
 
-- 
GitLab