diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-26 18:14:47 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-26 18:14:47 -0400 |
commit | ab35efb06b926e8a3aee5cfc8d1fa908aa4a4707 (patch) | |
tree | 6f456fe322a32510c611cd787d653ed186b0777d /ufund-ui/src/app/models/Need.ts | |
parent | ea13cf6ab3b71ff5e83fca876ec71fec1f7b00ae (diff) | |
download | JellySolutions-ab35efb06b926e8a3aee5cfc8d1fa908aa4a4707.tar.gz JellySolutions-ab35efb06b926e8a3aee5cfc8d1fa908aa4a4707.tar.bz2 JellySolutions-ab35efb06b926e8a3aee5cfc8d1fa908aa4a4707.zip |
Fix cupboard access checking and logging
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 } |