diff options
| author | Hayden Hartman <haydenhartman10@gmail.com> | 2025-03-17 21:49:35 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-17 21:49:35 -0400 | 
| commit | d1b7b81cbedc673cf6f52ac5745438f95083b78e (patch) | |
| tree | 948255f18f05f2a26e22126de44fa433635876df /ufund-ui/src/app/models | |
| parent | 1bf10f9f26f47ea5cff7ff48d5664febb0ed2585 (diff) | |
| parent | 54876363de44791ba65b6c43b795f8d0c3548ecc (diff) | |
| download | JellySolutions-d1b7b81cbedc673cf6f52ac5745438f95083b78e.tar.gz JellySolutions-d1b7b81cbedc673cf6f52ac5745438f95083b78e.tar.bz2 JellySolutions-d1b7b81cbedc673cf6f52ac5745438f95083b78e.zip  | |
Merge pull request #10 from RIT-SWEN-261-02/cupboard-component
Cupboard component
Diffstat (limited to 'ufund-ui/src/app/models')
| -rw-r--r-- | ufund-ui/src/app/models/User.ts | 8 | 
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  }  | 
