mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-14 17:25:50 +00:00
20 lines
388 B
Dart
20 lines
388 B
Dart
class GetOccupancyParam {
|
|
final String monthDate;
|
|
final String? spaceUuid;
|
|
final String communityUuid;
|
|
|
|
GetOccupancyParam({
|
|
required this.monthDate,
|
|
required this.spaceUuid,
|
|
required this.communityUuid,
|
|
});
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'monthDate': monthDate,
|
|
'spaceUuid': spaceUuid,
|
|
'communityUuid': communityUuid,
|
|
};
|
|
}
|
|
}
|