blob: c0425ec382b0a33c558a021ba2c7de89bcfb0e50 (
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
}
|