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

export enum GoalType {
    MONETARY,
    PHYSICAL
}