Added first draft of login and tour select page
This commit is contained in:
15
lib/model/address.dart
Normal file
15
lib/model/address.dart
Normal file
@ -0,0 +1,15 @@
|
||||
class Address {
|
||||
String street;
|
||||
String housingNumber;
|
||||
String postalCode;
|
||||
String city;
|
||||
String country;
|
||||
|
||||
Address({
|
||||
required this.street,
|
||||
required this.housingNumber,
|
||||
required this.postalCode,
|
||||
required this.city,
|
||||
required this.country,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user