mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00
15 lines
413 B
Dart
15 lines
413 B
Dart
part of './metadata.dart';
|
|
|
|
@freezed
|
|
class MetadataPluginRepository with _$MetadataPluginRepository {
|
|
factory MetadataPluginRepository({
|
|
required String name,
|
|
required String owner,
|
|
required String description,
|
|
required String repoUrl,
|
|
}) = _MetadataPluginRepository;
|
|
|
|
factory MetadataPluginRepository.fromJson(Map<String, dynamic> json) =>
|
|
_$MetadataPluginRepositoryFromJson(json);
|
|
}
|