19 lines
299 B
Dart
19 lines
299 B
Dart
import 'package:app_gaslieferung/model/address.dart';
|
|
|
|
import 'car.dart';
|
|
|
|
class Supplier {
|
|
String id;
|
|
String name;
|
|
Address address;
|
|
String? phoneNumber;
|
|
List<Car> cars;
|
|
|
|
Supplier({
|
|
required this.id,
|
|
required this.name,
|
|
required this.cars,
|
|
required this.address,
|
|
});
|
|
}
|