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

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

	public getInstructions(): string {
		return this.instructions;
	}

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

}