Files
rezepte/lib/models/steps.dart
SomnusVeritas 2e35cd1f9d added models
2023-10-02 19:38:26 +02:00

14 lines
308 B
Dart

/// Used to display the steps required to cook the referenced recipe
class Steps {
final List<CookingStep> steps = [];
void add(CookingStep step) => steps.add(step);
}
class CookingStep {
final String title;
final String description;
CookingStep({required this.title, this.description = ''});
}