mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
19 lines
444 B
Dart
19 lines
444 B
Dart
import 'package:equatable/equatable.dart';
|
|
import 'package:syncrow_web/pages/analytics/modules/air_quality/widgets/aqi_type_dropdown.dart';
|
|
|
|
class GetRangeOfAqiParam extends Equatable {
|
|
final DateTime date;
|
|
final String spaceUuid;
|
|
final AqiType aqiType;
|
|
|
|
const GetRangeOfAqiParam(
|
|
{
|
|
required this.date,
|
|
required this.spaceUuid,
|
|
required this.aqiType,
|
|
});
|
|
|
|
@override
|
|
List<Object?> get props => [date, spaceUuid];
|
|
}
|