mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
19 lines
344 B
Dart
19 lines
344 B
Dart
library metadata_objects;
|
|
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
|
|
part 'metadata.g.dart';
|
|
part 'metadata.freezed.dart';
|
|
|
|
part 'album.dart';
|
|
part 'artist.dart';
|
|
part 'feed.dart';
|
|
part 'image.dart';
|
|
part 'pagination.dart';
|
|
part 'playlist.dart';
|
|
part 'search.dart';
|
|
part 'track.dart';
|
|
part 'user.dart';
|
|
|
|
part 'plugin.dart';
|