aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/models/User.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/models/User.ts')
-rw-r--r--ufund-ui/src/app/models/User.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/ufund-ui/src/app/models/User.ts b/ufund-ui/src/app/models/User.ts
index 141f8aa..b640e04 100644
--- a/ufund-ui/src/app/models/User.ts
+++ b/ufund-ui/src/app/models/User.ts
@@ -1,12 +1,12 @@
import {Need} from './Need';
-enum userType {
+export enum userType {
HELPER,
MANAGER
}
export interface User {
- username: string;
- basket: Need[];
- type: userType
+ username: string;
+ basket: Need[];
+ type: userType
}