mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
9f1623bb34
- Updated .gitmodules to include mobile app submodule - Added swingmusic_mobile directory with Flutter app - Mobile app will now be built in unified release workflow
16 lines
312 B
Dart
16 lines
312 B
Dart
class SearchSuggestion {
|
|
final String id;
|
|
final String title;
|
|
final String? imageUrl;
|
|
final String type; // 'track', 'album', 'artist', 'playlist'
|
|
final dynamic data;
|
|
|
|
SearchSuggestion({
|
|
required this.id,
|
|
required this.title,
|
|
this.imageUrl,
|
|
required this.type,
|
|
this.data,
|
|
});
|
|
}
|