aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/models
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/models')
-rw-r--r--ufund-ui/src/app/models/Need.ts4
-rw-r--r--ufund-ui/src/app/models/User.ts4
2 files changed, 4 insertions, 4 deletions
diff --git a/ufund-ui/src/app/models/Need.ts b/ufund-ui/src/app/models/Need.ts
index 6cf7e76..588e745 100644
--- a/ufund-ui/src/app/models/Need.ts
+++ b/ufund-ui/src/app/models/Need.ts
@@ -12,6 +12,6 @@ export interface Need {
}
export enum GoalType {
- MONETARY,
- PHYSICAL
+ MONETARY = 'MONETARY',
+ PHYSICAL = 'PHYSICAL'
}
diff --git a/ufund-ui/src/app/models/User.ts b/ufund-ui/src/app/models/User.ts
index e6848fa..d7d67b5 100644
--- a/ufund-ui/src/app/models/User.ts
+++ b/ufund-ui/src/app/models/User.ts
@@ -1,6 +1,6 @@
export enum userType {
- HELPER,
- MANAGER
+ HELPER = "HELPER",
+ MANAGER = "MANAGER"
}
export interface User {