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