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