mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
15 lines
286 B
Dart
15 lines
286 B
Dart
import 'package:spotify/spotify.dart';
|
|
|
|
class YoutubeRelevantTrack {
|
|
String url;
|
|
double matchPercentage;
|
|
bool sameChannel;
|
|
String id;
|
|
YoutubeRelevantTrack({
|
|
required this.url,
|
|
required this.matchPercentage,
|
|
required this.sameChannel,
|
|
required this.id,
|
|
});
|
|
}
|