Files
rezepte/lib/models/ingredient.dart
2023-10-04 16:35:17 +02:00

14 lines
241 B
Dart

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