* update trakt list items when re-adding existing list * add seasons to search index
13 lines
306 B
C#
13 lines
306 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Application.Search
|
|
{
|
|
public record SearchResultAllItemsViewModel(
|
|
List<int> MovieIds,
|
|
List<int> ShowIds,
|
|
List<int> SeasonIds,
|
|
List<int> EpisodeIds,
|
|
List<int> ArtistIds,
|
|
List<int> MusicVideoIds);
|
|
}
|