aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/models/Need.ts
blob: 588e745b1f2470604bc3ced54da65da826f0bbf4 (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 = 'MONETARY',
    PHYSICAL = 'PHYSICAL'
}