PdaWeld.dart 344 Bytes
import 'package:json_annotation/json_annotation.dart';
part 'PdaWeld.g.dart';

@JsonSerializable()
class PdaWeld  {

  int id;
  String code;
  String name;

  PdaWeld(this.id, this.code, this.name);

  factory PdaWeld.fromJson(Map<String, dynamic> json) => _$PdaWeldFromJson(json);
  Map<String, dynamic> toJson() => _$PdaWeldToJson(this);


}