25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
302 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. import 'cw.dart';
  3. part 'w.g.dart';
  4. @JsonSerializable()
  5. class W {
  6. int? bg;
  7. List<Cw>? cw;
  8. W({this.bg, this.cw});
  9. factory W.fromJson(Map<String, dynamic> json) => _$WFromJson(json);
  10. Map<String, dynamic> toJson() => _$WToJson(this);
  11. }