Files
fcs/lib/vo/discount.dart

17 lines
257 B
Dart
Raw Normal View History

2020-06-26 16:04:40 +06:30
class Discount {
String code;
String customer;
String status;
double amount;
2020-06-29 16:15:25 +06:30
int weight;
int discountRate;
2020-06-26 16:04:40 +06:30
2020-06-29 16:15:25 +06:30
Discount(
{this.code,
this.customer,
this.amount,
this.status,
this.weight,
this.discountRate});
2020-06-26 16:04:40 +06:30
}