mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
15 lines
281 B
Dart
15 lines
281 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 'image.dart';
|
|
part 'playlist.dart';
|
|
part 'search.dart';
|
|
part 'track.dart';
|
|
part 'user.dart';
|