mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
12 lines
230 B
Dart
12 lines
230 B
Dart
class GetOccupancyParam {
|
|
final String monthDate;
|
|
final String? spaceUuid;
|
|
|
|
GetOccupancyParam({
|
|
required this.monthDate,
|
|
required this.spaceUuid,
|
|
});
|
|
|
|
Map<String, dynamic> toJson() => {'monthDate': monthDate};
|
|
}
|