25 lines
482 B
Dart
25 lines
482 B
Dart
import 'package.dart';
|
|
|
|
class Invoice {
|
|
String invoiceNumber;
|
|
DateTime invoiceDate;
|
|
String customerName;
|
|
String customerPhoneNumber;
|
|
double amount;
|
|
String discount;
|
|
String status;
|
|
String paymentAttachment;
|
|
|
|
List<Package> packages;
|
|
Invoice(
|
|
{this.invoiceNumber,
|
|
this.invoiceDate,
|
|
this.customerName,
|
|
this.customerPhoneNumber,
|
|
this.amount,
|
|
this.discount,
|
|
this.status,
|
|
this.paymentAttachment,
|
|
this.packages});
|
|
}
|