aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_data
diff options
context:
space:
mode:
authorDanijel Andjelkovic <adanijel99@gmail.com>2022-04-06 13:07:23 +0200
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-04-06 13:07:23 +0200
commit19fd492a03ea48571d6aaab9e75108a82599ef0a (patch)
treef0a3ffa8d9f9d692c027b0454dedc74cfcf4a79d /frontend/src/app/_data
parent0515cd40b21caad00d375583d17c111bcc9d4635 (diff)
Dodao klasu za notifikacije i dizajn. Dodao spinner u datatable komponentu.
Diffstat (limited to 'frontend/src/app/_data')
-rw-r--r--frontend/src/app/_data/Notification.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/src/app/_data/Notification.ts b/frontend/src/app/_data/Notification.ts
new file mode 100644
index 00000000..181bb332
--- /dev/null
+++ b/frontend/src/app/_data/Notification.ts
@@ -0,0 +1,8 @@
+export default class Notification {
+ _id: string = '';
+ constructor(
+ public title: string = 'Treniranje u toku...',
+ public id: string = '042',
+ public progress: number = 0.5
+ ) { }
+} \ No newline at end of file