22 lines
674 B
Dart
22 lines
674 B
Dart
import 'package:aiplot/bean/pic_info_bean.dart';
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'levitating_ball_pop_bean.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class LevitatingBallPopBean {
|
|
String? Image;
|
|
int? PopoutType;
|
|
String? Text;
|
|
PicInfoBean? BgPicInfo;
|
|
PicInfoBean? BtOKInfo;
|
|
PicInfoBean? BtCloseInfo;
|
|
PicInfoBean? ContentInfo;
|
|
|
|
LevitatingBallPopBean(this.Image, this.PopoutType, this.Text, this.BgPicInfo, this.BtOKInfo, this.BtCloseInfo, this.ContentInfo);
|
|
|
|
factory LevitatingBallPopBean.fromJson(Map<String, dynamic> json) => _$LevitatingBallPopBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$LevitatingBallPopBeanToJson(this);
|
|
}
|