import 'package:app_gaslieferung/model/customer.dart'; import 'article.dart'; class Receipt { Customer customer; List
articles; double totalGrossPrice; double totalNetPrice; Receipt({ required this.articles, required this.customer, required this.totalGrossPrice, required this.totalNetPrice, }); }