Merge branch 'master' of tzw/fcs into master
This commit is contained in:
@@ -6,6 +6,7 @@ class PickUp {
|
||||
String toTime;
|
||||
int numberOfPackage;
|
||||
int weight;
|
||||
int handlingFee;
|
||||
String address;
|
||||
String status;
|
||||
DateTime date;
|
||||
@@ -18,6 +19,7 @@ class PickUp {
|
||||
this.toTime,
|
||||
this.numberOfPackage,
|
||||
this.weight,
|
||||
this.handlingFee,
|
||||
this.address,
|
||||
this.status,
|
||||
this.date});
|
||||
|
||||
15
lib/vo/shipping_address.dart
Normal file
15
lib/vo/shipping_address.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
class ShippingAddress {
|
||||
String fullName;
|
||||
String addressLine1;
|
||||
String addressLine2;
|
||||
String city;
|
||||
String state;
|
||||
String phoneNumber;
|
||||
ShippingAddress(
|
||||
{this.fullName,
|
||||
this.addressLine1,
|
||||
this.addressLine2,
|
||||
this.city,
|
||||
this.state,
|
||||
this.phoneNumber});
|
||||
}
|
||||
Reference in New Issue
Block a user