16 lines
288 B
Dart
16 lines
288 B
Dart
class Attraction {
|
|
final String title;
|
|
final String location;
|
|
final String price;
|
|
final String image;
|
|
final List<String> tags;
|
|
|
|
Attraction({
|
|
required this.title,
|
|
required this.location,
|
|
required this.price,
|
|
required this.image,
|
|
required this.tags,
|
|
});
|
|
}
|