diff options
author | benal01 <bja4245@rit.edu> | 2025-03-29 14:37:57 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-29 14:37:57 -0400 |
commit | 61b5b762b150c82e7d48190bcfe3416bfea96059 (patch) | |
tree | 1888d1036f5d82db32ba01f3566fd708dfc6fa02 /ufund-ui/src/app/models/Need.ts | |
parent | 9e011d85fd307768f7cec7214ca873208574ecfb (diff) | |
download | JellySolutions-61b5b762b150c82e7d48190bcfe3416bfea96059.tar.gz JellySolutions-61b5b762b150c82e7d48190bcfe3416bfea96059.tar.bz2 JellySolutions-61b5b762b150c82e7d48190bcfe3416bfea96059.zip |
frontend implementation of a needs' urgency and location
Diffstat (limited to 'ufund-ui/src/app/models/Need.ts')
-rw-r--r-- | ufund-ui/src/app/models/Need.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ufund-ui/src/app/models/Need.ts b/ufund-ui/src/app/models/Need.ts index 9e97fd4..de6504a 100644 --- a/ufund-ui/src/app/models/Need.ts +++ b/ufund-ui/src/app/models/Need.ts @@ -2,9 +2,11 @@ export interface Need { name: string, id: number, filterAttributes: string[], + location: string; type: GoalType; maxGoal: number; current: number; + urgent: boolean; } export enum GoalType { |