member_pop_up_bean.dart 385 B

12345678910111213141516
  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'member_pop_up_bean.g.dart';
  3. @JsonSerializable()
  4. class MemberPopUpBean {
  5. @JsonKey(name: "enable")
  6. bool? enable;
  7. MemberPopUpBean(this.enable);
  8. factory MemberPopUpBean.fromJson(Map<String, dynamic> json) =>
  9. _$MemberPopUpBeanFromJson(json);
  10. Map<String, dynamic> toJson() => _$MemberPopUpBeanToJson(this);
  11. }