diff options
author | Tyler Ferrari <69283684+Sowgro@users.noreply.github.com> | 2025-03-31 20:19:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 20:19:44 -0400 |
commit | b7539414ac6aa8efd423a3a9a0a2b5586757e19c (patch) | |
tree | 39a21dc367d3891c53e849f5e1ce81eaebc0fd21 /ufund-ui/src/app/models/Need.ts | |
parent | 459c716d5429c040ac25435aab93f896f2fd79c3 (diff) | |
parent | a2e1329a510375fdada021c3d6a2f631a9c162ee (diff) | |
download | JellySolutions-b7539414ac6aa8efd423a3a9a0a2b5586757e19c.tar.gz JellySolutions-b7539414ac6aa8efd423a3a9a0a2b5586757e19c.tar.bz2 JellySolutions-b7539414ac6aa8efd423a3a9a0a2b5586757e19c.zip |
Merge pull request #21 from RIT-SWEN-261-02/need-description
Need description and image support
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 1451cad..6cf7e76 100644 --- a/ufund-ui/src/app/models/Need.ts +++ b/ufund-ui/src/app/models/Need.ts @@ -1,5 +1,6 @@ export interface Need { name: string, + image: string, id: number, filterAttributes: string[], location: string; @@ -7,6 +8,7 @@ export interface Need { maxGoal: number; current: number; urgent: boolean; + description: string; } export enum GoalType { |