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

12 lines
230 B
Dart

class Ingredient {
final String title;
List<String> possibleUnits = [];
List<String> preferredBrands = [];
Ingredient({
required this.title,
required this.possibleUnits,
required this.preferredBrands,
});
}