import 'package:garden_planner/entities/plant_in_row.dart';
class BeetRow {
int id;
List<PlantInRow> plants = [];
BeetRow(this.id);
}