Add metadata management for shows: implement metadata retrieval, application, and updates in the API and UI. Enhance Show and ShowDto models to include metadata fields, and update the database schema accordingly. Introduce new endpoints for metadata operations and integrate metadata display in the ShowDetail component.

This commit is contained in:
Leonid Pershin
2026-07-25 09:07:55 +03:00
parent ba023bc416
commit 0d2dee815e
42 changed files with 2271 additions and 4 deletions
@@ -9,6 +9,8 @@ public sealed record ShowSummaryDto(
ShowKind Kind,
int EpisodeCount,
int SeasonCount,
int? Year,
bool HasPoster,
DateTimeOffset CreatedAt
);
@@ -26,5 +28,9 @@ public sealed record ShowDto(
string Name,
ShowKind Kind,
string? Description,
string? MetadataProvider,
string? MetadataExternalId,
int? Year,
bool HasPoster,
IReadOnlyList<EpisodeDto> Episodes
);