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