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

export enum GoalType {
  MONETARY,
  PHYSICAL
}