aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/models/Need.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ufund-ui/src/app/models/Need.ts')
-rw-r--r--ufund-ui/src/app/models/Need.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/ufund-ui/src/app/models/Need.ts b/ufund-ui/src/app/models/Need.ts
index de6504a..1451cad 100644
--- a/ufund-ui/src/app/models/Need.ts
+++ b/ufund-ui/src/app/models/Need.ts
@@ -1,15 +1,15 @@
export interface Need {
- name: string,
- id: number,
- filterAttributes: string[],
- location: string;
- type: GoalType;
- maxGoal: number;
- current: number;
- urgent: boolean;
+ name: string,
+ id: number,
+ filterAttributes: string[],
+ location: string;
+ type: GoalType;
+ maxGoal: number;
+ current: number;
+ urgent: boolean;
}
export enum GoalType {
- MONETARY,
- PHYSICAL
+ MONETARY,
+ PHYSICAL
}