diff options
Diffstat (limited to 'recipeBuddy/src/app/DataModels/step.ts')
-rw-r--r-- | recipeBuddy/src/app/DataModels/step.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipeBuddy/src/app/DataModels/step.ts b/recipeBuddy/src/app/DataModels/step.ts index 67e14c1..ec33e15 100644 --- a/recipeBuddy/src/app/DataModels/step.ts +++ b/recipeBuddy/src/app/DataModels/step.ts @@ -1,13 +1,13 @@ export class Step { - private instruction: string; - private timer: number; + public instruction: string; + public timer: number; public constructor(instruction: string, timer: number) { this.instruction = instruction; this.timer = timer; } - public getInstruction(): string { + public getInstructions(): string { return this.instruction; } |