Added first draft of login and tour select page
This commit is contained in:
18
lib/model/receipt.dart
Normal file
18
lib/model/receipt.dart
Normal file
@ -0,0 +1,18 @@
|
||||
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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user