aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/models/Need.ts
blob: de6504ab50862f9f71c01277b6ecf586c024225c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export interface Need {
  name: string,
  id: number,
  filterAttributes: string[],
  location: string;
  type: GoalType;
  maxGoal: number;
  current: number;
  urgent: boolean;
}

export enum GoalType {
  MONETARY,
  PHYSICAL
}