mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
Added spaceUuid
to GetRangeOfAqiParam
model.
This commit is contained in:
@ -2,11 +2,13 @@ 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];
|
||||
List<Object?> get props => [date, spaceUuid];
|
||||
}
|
Reference in New Issue
Block a user