Files
recipe_journal/lib/models/ingredient_list_entry.dart
2025-02-06 16:25:22 +01:00

12 lines
250 B
Dart

import 'ingredient.dart';
import 'unit.dart';
class IngredientListEntry {
final Ingredient ingredient;
final int amount;
final Unit unit;
final bool optional;
IngredientListEntry(this.ingredient, this.amount, this.unit, this.optional);
}