20 lines
415 B
Dart
20 lines
415 B
Dart
class Attraction {
|
|
final String title;
|
|
final String location;
|
|
final String price;
|
|
final String image;
|
|
final List<String> tags;
|
|
final bool isBookingRequired;
|
|
final String description;
|
|
|
|
Attraction({
|
|
required this.title,
|
|
required this.location,
|
|
required this.price,
|
|
required this.image,
|
|
required this.tags,
|
|
required this.isBookingRequired,
|
|
required this.description
|
|
});
|
|
}
|