aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/file-download.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/models/file-download.ts')
-rw-r--r--catalog-ui/src/app/models/file-download.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/file-download.ts b/catalog-ui/src/app/models/file-download.ts
new file mode 100644
index 0000000000..d63963e1ba
--- /dev/null
+++ b/catalog-ui/src/app/models/file-download.ts
@@ -0,0 +1,6 @@
+'use strict';
+
+export interface IFileDownload {
+ artifactName:string;
+ base64Contents:string;
+}