mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
22 lines
498 B
Dart
22 lines
498 B
Dart
library metadata_objects;
|
|
|
|
import 'package:collection/collection.dart';
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:spotube/collections/assets.gen.dart';
|
|
import 'package:spotube/utils/primitive_utils.dart';
|
|
|
|
part 'metadata.g.dart';
|
|
part 'metadata.freezed.dart';
|
|
|
|
part 'album.dart';
|
|
part 'artist.dart';
|
|
part 'browse.dart';
|
|
part 'image.dart';
|
|
part 'pagination.dart';
|
|
part 'playlist.dart';
|
|
part 'search.dart';
|
|
part 'track.dart';
|
|
part 'user.dart';
|
|
|
|
part 'plugin.dart';
|