Added the ability to filter the main search bar

This commit is contained in:
tidusjar 2020-10-06 14:17:01 +01:00
commit 7ba63a33ce
13 changed files with 132 additions and 36 deletions

View file

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Ombi.Core.Models.Search.V2
{
public class MultiSearchFilter
{
public bool Movies { get; set; }
public bool TvShows { get; set; }
public bool Music { get; set; }
public bool People { get; set; }
}
}