Files
fcs/lib/domain/entities/discount.dart

19 lines
288 B
Dart
Raw Normal View History

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