From e6278bff41c4c1740e74cb7081193fd8f4e31d87 Mon Sep 17 00:00:00 2001 From: George Kalampokis Date: Tue, 2 Jan 2024 09:52:03 +0200 Subject: [PATCH] Add missing file format model --- dmp-frontend/src/app/core/model/file/file-format.model.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 dmp-frontend/src/app/core/model/file/file-format.model.ts diff --git a/dmp-frontend/src/app/core/model/file/file-format.model.ts b/dmp-frontend/src/app/core/model/file/file-format.model.ts new file mode 100644 index 000000000..a166c7151 --- /dev/null +++ b/dmp-frontend/src/app/core/model/file/file-format.model.ts @@ -0,0 +1,5 @@ +export class FileFormat { + format: string; + formatName: string; + icon: string; +}