Files
fcs/lib/vo/shipment.dart

26 lines
506 B
Dart
Raw Normal View History

2020-05-29 16:14:17 +06:30
class Shipment {
DateTime shipDate;
String shipmentNumber;
2020-06-01 14:24:45 +06:30
DateTime cutoffDate;
String shipType;
DateTime arrivalDate;
DateTime departureDate;
String consignee;
String port;
String destination;
2020-05-29 16:14:17 +06:30
String status;
2020-06-01 14:24:45 +06:30
String remark;
Shipment(
{this.shipDate,
this.shipmentNumber,
this.cutoffDate,
this.shipType,
this.status,
this.arrivalDate,
this.departureDate,
this.consignee,
this.port,
this.destination,
this.remark});
2020-05-29 16:14:17 +06:30
}