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

17 lines
356 B
Dart

import '../src/enums.dart' show IngredientType;
import 'unit.dart';
class Ingredient {
final String title;
final List<Unit> possibleUnits;
final List<String> preferredBrands;
final IngredientType type;
Ingredient({
required this.title,
required this.type,
this.possibleUnits = const [],
this.preferredBrands = const [],
});
}