From 6bd1726fc996d6930a59fe8aa5903ed697fcbe4e Mon Sep 17 00:00:00 2001 From: Willem Dantuma Date: Thu, 25 Jun 2020 10:01:54 +0200 Subject: [PATCH] Add dataenddate --- projects/common/src/fm/models/list.item.ts | 27 +++++++++++----------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/projects/common/src/fm/models/list.item.ts b/projects/common/src/fm/models/list.item.ts index fe39561..ba1a605 100644 --- a/projects/common/src/fm/models/list.item.ts +++ b/projects/common/src/fm/models/list.item.ts @@ -1,13 +1,14 @@ -export interface IListItem { - url?: string; - code?: string; - name?: string; - created?: Date; - updated?: Date; - dataDate?: Date; - itemType?: string; - sourceTask?: string; - size?: number; - state?: number; - thumbnail?: boolean; -} +export interface IListItem { + url?: string; + code?: string; + name?: string; + created?: Date; + updated?: Date; + dataDate?: Date; + dataEndDate?: Date; + itemType?: string; + sourceTask?: string; + size?: number; + state?: number; + thumbnail?: boolean; +}