import 'package:json_annotation/json_annotation.dart'; import 'epg_bean.dart'; part 'home_info_bean.g.dart'; /// @JsonSerializable(explicitToJson: true) class HomeInfoBean { String? categoryName; String? categoryType; bool? isQuickStartPopUp; List? epgList; int? showNum_Index; HomeInfoBean(this.categoryName, this.categoryType, this.isQuickStartPopUp, this.epgList, this.showNum_Index); factory HomeInfoBean.fromJson(Map json) => _$HomeInfoBeanFromJson(json); Map toJson() => _$HomeInfoBeanToJson(this); }