GardenPlanner/lib/entities/beet_row.dart

9 lines
110 B
Dart
Raw Normal View History

2023-06-25 10:15:30 +02:00
import 'plant_in_row.dart';
2023-06-25 10:13:39 +02:00
class BeetRow {
int id;
List<PlantInRow> plants = [];
BeetRow(this.id);
}