* add basic selection behavior to search results * add search scrolling, selection actions * include shows in multiselect * multiselect movies, shows, collection items * add movie and show tags * code cleanup * update show screenshot
14 lines
423 B
C#
14 lines
423 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Repositories
|
|
{
|
|
public interface ISearchRepository
|
|
{
|
|
public Task<List<MediaItem>> SearchMediaItemsByTitle(string query);
|
|
public Task<List<MediaItem>> SearchMediaItemsByGenre(string genre);
|
|
public Task<List<MediaItem>> SearchMediaItemsByTag(string tag);
|
|
}
|
|
}
|