Add dataenddate
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

2022.01
Willem Dantuma 2020-06-25 10:01:54 +02:00
parent b0ff54d157
commit 6bd1726fc9
1 changed files with 14 additions and 13 deletions

View File

@ -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;
}