mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
14 lines
250 B
Dart
14 lines
250 B
Dart
class GetOccupancyHeatMapParam {
|
|
final DateTime year;
|
|
final String spaceUuid;
|
|
|
|
const GetOccupancyHeatMapParam({
|
|
required this.year,
|
|
required this.spaceUuid,
|
|
});
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {'year': year.year};
|
|
}
|
|
}
|