Added first draft of login and tour select page
This commit is contained in:
9
lib/model/customer.dart
Normal file
9
lib/model/customer.dart
Normal file
@ -0,0 +1,9 @@
|
||||
import 'address.dart';
|
||||
|
||||
class Customer {
|
||||
String name;
|
||||
String id;
|
||||
Address address;
|
||||
|
||||
Customer({required this.name, required this.address, required this.id});
|
||||
}
|
||||
Reference in New Issue
Block a user