|
- import 'package:json_annotation/json_annotation.dart';
-
- part 'cw.g.dart';
-
- @JsonSerializable()
- class Cw {
- int? rl;
- int? sc;
- String? w;
- int? wb;
- int? wc;
- int? we;
- String? wp;
-
- Cw({this.rl, this.sc, this.w, this.wb, this.wc, this.we, this.wp});
-
- factory Cw.fromJson(Map<String, dynamic> json) => _$CwFromJson(json);
-
- Map<String, dynamic> toJson() => _$CwToJson(this);
- }
|