diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-27 18:55:39 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-27 18:55:39 -0400 |
commit | d6f4aad157baad7d9b25d56ce056b80805e88f5f (patch) | |
tree | 1b4a3df94389afb1637ea59fe47ba3a327c89561 /ufund-ui/src/app/models/Need.ts | |
parent | 96f833352eff7b9428daf2add988ecd0a2b41d92 (diff) | |
parent | ddbd1cc688aa98fb275ad72a750fbaaf53e6c0ae (diff) | |
download | JellySolutions-d6f4aad157baad7d9b25d56ce056b80805e88f5f.tar.gz JellySolutions-d6f4aad157baad7d9b25d56ce056b80805e88f5f.tar.bz2 JellySolutions-d6f4aad157baad7d9b25d56ce056b80805e88f5f.zip |
Merge branch 'main' into css
Diffstat (limited to 'ufund-ui/src/app/models/Need.ts')
-rw-r--r-- | ufund-ui/src/app/models/Need.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ufund-ui/src/app/models/Need.ts b/ufund-ui/src/app/models/Need.ts index 9e97fd4..5cd4e39 100644 --- a/ufund-ui/src/app/models/Need.ts +++ b/ufund-ui/src/app/models/Need.ts @@ -1,13 +1,13 @@ export interface Need { - name: string, - id: number, - filterAttributes: string[], - type: GoalType; - maxGoal: number; - current: number; + name: string, + id: number, + filterAttributes: string[], + type: GoalType; + maxGoal: number; + current: number; } export enum GoalType { - MONETARY, - PHYSICAL + MONETARY, + PHYSICAL } |