modify ui
This commit is contained in:
8
lib/vo/discount.dart
Normal file
8
lib/vo/discount.dart
Normal file
@@ -0,0 +1,8 @@
|
||||
class Discount {
|
||||
String code;
|
||||
String customer;
|
||||
String status;
|
||||
double amount;
|
||||
|
||||
Discount({this.code, this.customer, this.amount, this.status});
|
||||
}
|
||||
10
lib/vo/payment_method.dart
Normal file
10
lib/vo/payment_method.dart
Normal file
@@ -0,0 +1,10 @@
|
||||
class PaymentMethod {
|
||||
String name;
|
||||
String accountName;
|
||||
String account;
|
||||
String phone;
|
||||
String mail;
|
||||
|
||||
PaymentMethod(
|
||||
{this.name, this.accountName, this.account, this.phone, this.mail});
|
||||
}
|
||||
Reference in New Issue
Block a user