diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 16:29:53 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 16:29:53 -0400 |
commit | 0377515c685b3ced5f67ae6d2ffee22893943acb (patch) | |
tree | a33f760bb831c948ebf1844ca52d7625ca7f6fe7 | |
parent | 02ba2aecbded78d80885f9a58ed112a0e55f9d24 (diff) | |
parent | 9c909153a75f9554d02fdbce7d338bb39c197898 (diff) | |
download | JellySolutions-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.ts | 6 |
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 } |