mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Added the ability to filter the main search bar
This commit is contained in:
parent
1eae6647db
commit
7ba63a33ce
13 changed files with 132 additions and 36 deletions
14
src/Ombi.Core/Models/Search/V2/MultiSearchFilter.cs
Normal file
14
src/Ombi.Core/Models/Search/V2/MultiSearchFilter.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue