diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 17:10:38 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 17:10:38 -0400 |
commit | c4316368ccd2e724de838fa6648ff390d4f417a6 (patch) | |
tree | da20406da93c33f1fab350802cbdf5be5131560e /ufund-ui/src | |
parent | b998a4e7ca580f19ab10862de61d7458031027f2 (diff) | |
parent | ed3d0e5e5f9c58c3926ea55a422212f4da1c8849 (diff) | |
download | JellySolutions-c4316368ccd2e724de838fa6648ff390d4f417a6.tar.gz JellySolutions-c4316368ccd2e724de838fa6648ff390d4f417a6.tar.bz2 JellySolutions-c4316368ccd2e724de838fa6648ff390d4f417a6.zip |
Merge branch 'main' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b
Diffstat (limited to 'ufund-ui/src')
-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 } |