ChatApp/lib/beans/HallEpgListBean.g.dart
2024-06-14 15:58:48 +08:00

21 lines
712 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'HallEpgListBean.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
HallEpgListBean _$HallEpgListBeanFromJson(Map<String, dynamic> json) =>
HallEpgListBean(
(json['EpgCategoryList'] as List<dynamic>?)
?.map((e) => EpgCategoryListBean.fromJson(e as Map<String, dynamic>))
.toList(),
);
Map<String, dynamic> _$HallEpgListBeanToJson(HallEpgListBean instance) =>
<String, dynamic>{
'EpgCategoryList':
instance.EpgCategoryList?.map((e) => e.toJson()).toList(),
};