modify ui

This commit is contained in:
PhyoThandar
2020-06-26 16:04:40 +06:30
parent 59cb172713
commit e8d5f24a99
18 changed files with 1238 additions and 189 deletions

8
lib/vo/discount.dart Normal file
View File

@@ -0,0 +1,8 @@
class Discount {
String code;
String customer;
String status;
double amount;
Discount({this.code, this.customer, this.amount, this.status});
}