import 'package:aiplot/bean/pic_info_bean.dart'; import 'package:json_annotation/json_annotation.dart'; part 'popout_bean.g.dart'; @JsonSerializable() class PopoutBean { int? PopoutType; String? PopoutId; String? Image; String? Text; int? AdId; PicInfoBean? BgPicInfo; PicInfoBean? BtOKInfo; PicInfoBean? BtCloseInfo; PicInfoBean? ContentInfo; PopoutBean(this.PopoutType, this.PopoutId, this.Image, this.Text, this.AdId, this.BgPicInfo, this.BtOKInfo, this.BtCloseInfo, this.ContentInfo); factory PopoutBean.fromJson(Map json) => _$PopoutBeanFromJson(json); Map toJson() => _$PopoutBeanToJson(this); }