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

export enum GoalType {
    MONETARY,
    PHYSICAL
}