mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
Restore original swingmusic_mobile folder from 9f1623b
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user