23 lines
573 B
Dart
23 lines
573 B
Dart
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<EpgBean>? epgList;
|
|
int? showNum_Index;
|
|
|
|
HomeInfoBean(this.categoryName, this.categoryType, this.isQuickStartPopUp, this.epgList, this.showNum_Index);
|
|
|
|
factory HomeInfoBean.fromJson(Map<String, dynamic> json) => _$HomeInfoBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$HomeInfoBeanToJson(this);
|
|
|
|
}
|