Files
fcs/lib/domain/entities/discount.dart
PhyoThandar 2a401f2e1f update rate
2020-10-15 15:49:02 +06:30

19 lines
288 B
Dart

class Discount {
String id;
String code;
String customer;
String status;
double amount;
int weight;
double discountRate;
Discount(
{this.id,
this.code,
this.customer,
this.amount,
this.status,
this.weight,
this.discountRate});
}