|
- import 'package:json_annotation/json_annotation.dart';
-
- part 'Supply.g.dart';
-
- @JsonSerializable()
- class Supply {
- Supply();
-
- num id;
- String name;
- String sku;
- String manufacturer;
- String unit;
- num tbSuppliesTypeId;
- num tbCustomerId;
- bool isSelected = false;
-
- factory Supply.fromJson(Map<String, dynamic> json) => _$SupplyFromJson(json);
- Map<String, dynamic> toJson() => _$SupplyToJson(this);
- }
|