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:
@@ -1,8 +1,7 @@
|
||||
using LiteCqrs;
|
||||
using TeleWave.Application.Broadcast;
|
||||
using TeleWave.Application.Common.Models;
|
||||
|
||||
namespace TeleWave.Application.Streaming.GetPublicEpg;
|
||||
|
||||
public sealed record GetPublicEpgQuery(string Slug, DateTimeOffset FromUtc, DateTimeOffset ToUtc)
|
||||
: IQuery<Result<IReadOnlyList<ScheduleEntryDto>>>;
|
||||
: IQuery<Result<IReadOnlyList<PublicEpgEntryDto>>>;
|
||||
|
||||
Reference in New Issue
Block a user