diff --git a/src/app/core/services/shared-data/shared-data.service.ts b/src/app/core/services/shared-data/shared-data.service.ts
index 6640184b5b983946c42d31203d2cd3d4d88f56ec..4cd4c51ea8ee18f10dc424f62dc567b2ffb5839d 100644
--- a/src/app/core/services/shared-data/shared-data.service.ts
+++ b/src/app/core/services/shared-data/shared-data.service.ts
@@ -37,6 +37,8 @@ export class SharedDataService {
       revisions: [],
       catalogNames: [],
       publisher: '',
+      ownerId: '',
+      ownerListForSol: [],
     });
   private _imageToShowSubject: BehaviorSubject<any> = new BehaviorSubject<any>(
     null,
diff --git a/src/app/shared/models/public-solution.model.ts b/src/app/shared/models/public-solution.model.ts
index c30d63553a36188bbf95c7df8c2a3100bdbdb7de..0902f238c8685db1680b04c33ee492c4fe4b0db5 100644
--- a/src/app/shared/models/public-solution.model.ts
+++ b/src/app/shared/models/public-solution.model.ts
@@ -18,6 +18,8 @@ export interface PublicSolutionsRequestPayload {
 export interface Solution {
   name: string;
   ownerName: string;
+  ownerId: string;
+  ownerListForSol: { userId: string; firstName: string; lastName: string }[];
   active: boolean;
   sourceId: string;
   authors: AuthorPublisherModel[];