12 lines
No EOL
348 B
Dart
12 lines
No EOL
348 B
Dart
import 'package:pizzaplanner/entities/PizzaRecipe/RecipeSubStep.dart';
|
|
|
|
class RecipeStep {
|
|
final String name;
|
|
final String waitUnit;
|
|
final int waitMin;
|
|
final int waitMax;
|
|
final String description;
|
|
final List<RecipeSubStep> subSteps;
|
|
|
|
RecipeStep(this.name, this.description, this.waitUnit, this.waitMin, this.waitMax, this.subSteps);
|
|
} |