17 lines
413 B
Dart
17 lines
413 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'ad_free_bean.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class AdFreeBean {
|
|
String? BackgroundImage;
|
|
String? BtnImage;
|
|
String? BtnAction;
|
|
|
|
AdFreeBean(this.BackgroundImage, this.BtnImage, this.BtnAction);
|
|
|
|
factory AdFreeBean.fromJson(Map<String, dynamic> json) => _$AdFreeBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$AdFreeBeanToJson(this);
|
|
}
|