aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunther6070 <haydenhartman10@yahoo.com>2025-03-17 16:29:53 -0400
committerGunther6070 <haydenhartman10@yahoo.com>2025-03-17 16:29:53 -0400
commit0377515c685b3ced5f67ae6d2ffee22893943acb (patch)
treea33f760bb831c948ebf1844ca52d7625ca7f6fe7
parent02ba2aecbded78d80885f9a58ed112a0e55f9d24 (diff)
parent9c909153a75f9554d02fdbce7d338bb39c197898 (diff)
downloadJellySolutions-0377515c685b3ced5f67ae6d2ffee22893943acb.tar.gz
JellySolutions-0377515c685b3ced5f67ae6d2ffee22893943acb.tar.bz2
JellySolutions-0377515c685b3ced5f67ae6d2ffee22893943acb.zip
Merge branch 'service-tests' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b into service-tests
-rw-r--r--ufund-ui/src/app/models/User.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/ufund-ui/src/app/models/User.ts b/ufund-ui/src/app/models/User.ts
index 9149fe7..141f8aa 100644
--- a/ufund-ui/src/app/models/User.ts
+++ b/ufund-ui/src/app/models/User.ts
@@ -1,6 +1,12 @@
import {Need} from './Need';
+enum userType {
+ HELPER,
+ MANAGER
+}
+
export interface User {
username: string;
basket: Need[];
+ type: userType
}