MIF_E31222656/lib/domain/entities/crop_progress_log.dart

20 lines
441 B
Dart

import 'package:equatable/equatable.dart';
class CropProgressLog extends Equatable {
final String id;
final String scheduleId;
final DateTime date;
final String activity;
final String? notes;
const CropProgressLog({
required this.id,
required this.scheduleId,
required this.date,
required this.activity,
this.notes,
});
@override
List<Object?> get props => [id, scheduleId, date, activity, notes];
}