17 lines
314 B
Dart
17 lines
314 B
Dart
|
import 'dart:ui';
|
||
|
|
||
|
class PlantTime {
|
||
|
final DateTime from;
|
||
|
final DateTime until;
|
||
|
final String description;
|
||
|
final Color color;
|
||
|
final bool action;
|
||
|
|
||
|
PlantTime(
|
||
|
{required this.color,
|
||
|
required this.description,
|
||
|
required this.from,
|
||
|
required this.until,
|
||
|
required this.action});
|
||
|
}
|