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