refactored cooking steps

This commit is contained in:
SomnusVeritas
2023-10-17 22:25:48 +02:00
parent 31a5933919
commit 7a8e6a3c65
4 changed files with 14 additions and 15 deletions

View File

@@ -0,0 +1,6 @@
class CookingStep {
final String title;
final String description;
CookingStep({required this.title, this.description = ''});
}