summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/DataModels/step.ts
blob: 06c15c97612373c50992e07e21ce7dd10339a495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export class Step {
	public instruction: string;
	public timer: number;

	public constructor(instruction: string, timer: number) {
		this.instruction = instruction;
		this.timer = timer;
	}

	public getInstruction(): string {
		return this.instruction;
	}

	public getTimer(): number {
		return this.timer;
	}

}