mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
20 lines
357 B
Dart
20 lines
357 B
Dart
class GetTotalEnergyConsumptionParam {
|
|
final String? startDate;
|
|
final String? endDate;
|
|
final String? spaceId;
|
|
|
|
GetTotalEnergyConsumptionParam({
|
|
this.startDate,
|
|
this.endDate,
|
|
this.spaceId,
|
|
});
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'startDate': startDate,
|
|
'endDate': endDate,
|
|
'spaceId': spaceId,
|
|
};
|
|
}
|
|
}
|