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.
 
 
 
 
 
 

21 lines
388 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'cw.g.dart';
  3. @JsonSerializable()
  4. class Cw {
  5. int? rl;
  6. int? sc;
  7. String? w;
  8. int? wb;
  9. int? wc;
  10. int? we;
  11. String? wp;
  12. Cw({this.rl, this.sc, this.w, this.wb, this.wc, this.we, this.wp});
  13. factory Cw.fromJson(Map<String, dynamic> json) => _$CwFromJson(json);
  14. Map<String, dynamic> toJson() => _$CwToJson(this);
  15. }