Fixes bug on Dataset Template model of DMP not incuding description.

This commit is contained in:
gkolokythas 2019-07-31 10:41:49 +03:00
parent f195adf44d
commit 3549e5f65f
1 changed files with 2 additions and 1 deletions

View File

@ -8,8 +8,9 @@ export interface DmpProfile {
status: number; status: number;
created: Date; created: Date;
modified: Date; modified: Date;
description: string;
} }
export interface DmpProfileDefinition { export interface DmpProfileDefinition {
fields: DmpProfileField[]; fields: DmpProfileField[];
} }