Files
CityCards_Customer_Flutter/lib/attractions/models/attraction_model.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,
});
}