aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/models/Need.ts
blob: 1451cad2fee0922cb8a4647ccd9ce016f1d012e6 (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
}