2020-04-05 16:10:56 +00:00
|
|
|
#nullable disable
|
2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2019-01-13 19:26:15 +00:00
|
|
|
using MediaBrowser.Model.Dto;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Querying
|
|
|
|
{
|
2021-02-20 22:13:04 +00:00
|
|
|
public class QueryFilters
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
2021-02-20 22:13:04 +00:00
|
|
|
public QueryFilters()
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
2018-12-27 21:43:48 +00:00
|
|
|
Tags = Array.Empty<string>();
|
2021-02-20 22:13:04 +00:00
|
|
|
Genres = Array.Empty<NameGuidPair>();
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public NameGuidPair[] Genres { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public string[] Tags { get; set; }
|
|
|
|
}
|
|
|
|
}
|