Files
App-Gaslieferung/lib/model/address.dart
2026-02-01 19:59:11 +01:00

16 lines
272 B
Dart

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,
});
}