From 3d4042e8c6f3d0ccfbd1b1dfdbbe3b2b72d6245b Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Mon, 16 Sep 2024 15:35:24 +0200 Subject: [PATCH] AW6241 Add item owner --- projects/common/src/fm/models/item.ts | 1 + projects/common/src/fm/models/list.item.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/projects/common/src/fm/models/item.ts b/projects/common/src/fm/models/item.ts index 13b82f4..34977c7 100644 --- a/projects/common/src/fm/models/item.ts +++ b/projects/common/src/fm/models/item.ts @@ -25,6 +25,7 @@ export class Item implements IItem { public state?: number; public data?:any; public isEditable?:boolean; + public owner?: string; constructor() { } diff --git a/projects/common/src/fm/models/list.item.ts b/projects/common/src/fm/models/list.item.ts index 9c52097..2a5a988 100644 --- a/projects/common/src/fm/models/list.item.ts +++ b/projects/common/src/fm/models/list.item.ts @@ -11,4 +11,5 @@ export interface IListItem { size?: number; state?: number; thumbnail?: boolean; + owner?: string; }