using ErsatzTV.Core.Domain; using ErsatzTV.Core.Plex; namespace ErsatzTV.Core.Interfaces.Repositories; public interface IPlexTelevisionRepository : IMediaServerTelevisionRepository { Task> RemoveAllTags(PlexLibrary library, PlexTag tag, System.Collections.Generic.HashSet keep); Task AddTag(PlexShow show, PlexTag tag); Task UpdateLastNetworksScan(PlexLibrary library); } public record PlexShowAddTagResult(Option Existing, Option Added);