diff options
Diffstat (limited to 'recipeBuddy/src/app/DataModels')
-rw-r--r-- | recipeBuddy/src/app/DataModels/step.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipeBuddy/src/app/DataModels/step.ts b/recipeBuddy/src/app/DataModels/step.ts index ef07596..ec33e15 100644 --- a/recipeBuddy/src/app/DataModels/step.ts +++ b/recipeBuddy/src/app/DataModels/step.ts @@ -1,14 +1,14 @@ export class Step { - public instructions: string; + public instruction: string; public timer: number; - public constructor(instructions: string, timer: number) { - this.instructions = instructions; + public constructor(instruction: string, timer: number) { + this.instruction = instruction; this.timer = timer; } public getInstructions(): string { - return this.instructions; + return this.instruction; } public getTimer(): number { |