18 lines
338 B
Dart
18 lines
338 B
Dart
import 'package:app_gaslieferung/model/customer.dart';
|
|
|
|
import 'article.dart';
|
|
|
|
class Receipt {
|
|
Customer customer;
|
|
List<Article> articles;
|
|
|
|
double totalGrossPrice;
|
|
double totalNetPrice;
|
|
|
|
Receipt({
|
|
required this.articles,
|
|
required this.customer,
|
|
required this.totalGrossPrice,
|
|
required this.totalNetPrice,
|
|
});
|
|
} |