import 'package:json_annotation/json_annotation.dart'; part 'user_ad_num_bean.g.dart'; @JsonSerializable() class UserAdNumBean { int? UsedRewardCount; int? TotalRewardCount; String? BackgroundImage; UserAdNumBean(this.UsedRewardCount, this.TotalRewardCount, this.BackgroundImage); factory UserAdNumBean.fromJson(Map json) => _$UserAdNumBeanFromJson(json); Map toJson() => _$UserAdNumBeanToJson(this); }