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