Add dataenddate
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma 2020-06-25 10:01:54 +02:00
parent b0ff54d157
commit 6bd1726fc9

View File

@ -1,13 +1,14 @@
export interface IListItem { export interface IListItem {
url?: string; url?: string;
code?: string; code?: string;
name?: string; name?: string;
created?: Date; created?: Date;
updated?: Date; updated?: Date;
dataDate?: Date; dataDate?: Date;
itemType?: string; dataEndDate?: Date;
sourceTask?: string; itemType?: string;
size?: number; sourceTask?: string;
state?: number; size?: number;
thumbnail?: boolean; state?: number;
} thumbnail?: boolean;
}