You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
422 B

import 'package:json_annotation/json_annotation.dart';
part 'vip_rule_details.g.dart';
@JsonSerializable(explicitToJson: true)
class VipRuleDetails {
String? rule = '';
String? contrast = '';
String? qa = '';
String? recharge = '';
VipRuleDetails();
factory VipRuleDetails.fromJson(Map<String, dynamic> json) => _$VipRuleDetailsFromJson(json);
Map<String, dynamic> toJson() => _$VipRuleDetailsToJson(this);
}