* sync guids/provider ids (#227) * sync guids from plex * cleanup * sync local guids * sync jellyfin and emby guids * add episodes to search index (#228) * sync episode directors and writers * display episode writers and directors * remove missing episodes from search index * show episodes in search results * fix emby and jellyfin episode updates * fix updating plex episodes * don't delete channel logos on startup * add episodes page; fix adding episodes to collection * cleanup * multi-part episode grouping fixes (#229)
12 lines
277 B
C#
12 lines
277 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Application.Search
|
|
{
|
|
public record SearchResultAllItemsViewModel(
|
|
List<int> MovieIds,
|
|
List<int> ShowIds,
|
|
List<int> EpisodeIds,
|
|
List<int> ArtistIds,
|
|
List<int> MusicVideoIds);
|
|
}
|