create dictionary resource from metadata tab
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / resource-dictionary / model / metaData.model.ts
index 92e6bce..89a83a1 100644 (file)
@@ -27,12 +27,14 @@ export class MetaData {
     @JsonProperty('updated-by')
     public updatedBy: string;
     public property: Property;
+    public sources: any;
 
     constructor() {
         this.name = '';
         this.tags = '';
         this.updatedBy = '';
         this.property = new Property();
+        this.sources = {};
     }
 }