FondleTalk/lib/beans/recharge_bean.dart
2024-07-21 15:10:36 +08:00

21 lines
527 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'recharge_bean.g.dart';
///标签
@JsonSerializable(explicitToJson: true)
class RechargeBean {
int? id;
int? currencyCount;
int? price;
String? discount;
int? currencyType;
String? imgUrl;
RechargeBean(this.id, this.currencyCount, this.price, this.discount, this.currencyType, this.imgUrl);
factory RechargeBean.fromJson(Map<String, dynamic> json) => _$RechargeBeanFromJson(json);
Map<String, dynamic> toJson() => _$RechargeBeanToJson(this);
}