12 lines
170 B
Dart
12 lines
170 B
Dart
class DeliveryModel {
|
|
String id;
|
|
String name;
|
|
String imageUrl;
|
|
|
|
DeliveryModel({
|
|
required this.id,
|
|
required this.name,
|
|
required this.imageUrl,
|
|
});
|
|
}
|