AI_Drawing/lib/bean/popout_bean.dart
2024-06-03 15:30:15 +08:00

24 lines
665 B
Dart

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<String, dynamic> json) => _$PopoutBeanFromJson(json);
Map<String, dynamic> toJson() => _$PopoutBeanToJson(this);
}