PdaHandleModel.dart 474 Bytes
import 'package:json_annotation/json_annotation.dart';

part 'PdaHandleModel.g.dart';

@JsonSerializable()
class PdaHandleModel {

  int taskNo;
  String productCode;
  bool isNG;
  String nGcode;
  bool isOnLine;


  PdaHandleModel(this.taskNo, this.productCode, this.isNG, this.nGcode,
      this.isOnLine);

  factory PdaHandleModel.fromJson(Map<String, dynamic> json) => _$PdaHandleModelFromJson(json);

  Map<String, dynamic> toJson() => _$PdaHandleModelToJson(this);
}