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

25 lines
573 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'EpgCategoryListBean.g.dart';
@JsonSerializable(explicitToJson: true)
class EpgCategoryListBean {
String? CategoryName;
String? CategoryType;
bool? HasMore;
int? RowNum;
bool? IsQuickStartPopUp;
EpgCategoryListBean(this.CategoryName, this.CategoryType, this.HasMore,
this.RowNum, this.IsQuickStartPopUp, );
factory EpgCategoryListBean.fromJson(Map<String, dynamic> json) => _$EpgCategoryListBeanFromJson(json);
Map<String, dynamic> toJson() => _$EpgCategoryListBeanToJson(this);
}