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.
 
 
 
 
 
 

20 lines
392 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'header.g.dart';
  3. @JsonSerializable()
  4. class Header {
  5. int? code;
  6. String? message;
  7. String? sid;
  8. int? status;
  9. Header({this.code, this.message, this.sid, this.status});
  10. factory Header.fromJson(Map<String, dynamic> json) {
  11. return _$HeaderFromJson(json);
  12. }
  13. Map<String, dynamic> toJson() => _$HeaderToJson(this);
  14. }