Implement episode metadata management: add functionality to refresh episode metadata from external sources, including new API endpoints and UI integration. Enhance Show and Episode models to support additional metadata fields, and update database schema accordingly. Update ShowDetail and ShowMetadataCard components to display refreshed episode information and provide user feedback on metadata updates.
This commit is contained in:
@@ -20,7 +20,13 @@ public sealed record EpisodeDto(
|
||||
int Position,
|
||||
string? AssetName,
|
||||
MediaAssetStatus? AssetStatus,
|
||||
double? DurationSeconds
|
||||
double? DurationSeconds,
|
||||
int? Season,
|
||||
int? Episode,
|
||||
string? Title,
|
||||
string? Overview,
|
||||
bool HasStill,
|
||||
DateOnly? AirDate
|
||||
);
|
||||
|
||||
public sealed record ShowDto(
|
||||
|
||||
Reference in New Issue
Block a user