jellyfin/MediaBrowser.Model/Querying/QueryFilters.cs

41 lines
888 B
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dto;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Querying
{
public class QueryFiltersLegacy
{
public string[] Genres { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string[] Tags { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string[] OfficialRatings { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public int[] Years { get; set; }
public QueryFiltersLegacy()
{
2018-12-27 16:43:48 -05:00
Genres = Array.Empty<string>();
Tags = Array.Empty<string>();
OfficialRatings = Array.Empty<string>();
Years = Array.Empty<int>();
2018-12-27 18:27:57 -05:00
}
}
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public class QueryFilters
{
public NameGuidPair[] Genres { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string[] Tags { get; set; }
public QueryFilters()
{
2018-12-27 16:43:48 -05:00
Tags = Array.Empty<string>();
Genres = Array.Empty<NameGuidPair>();
2018-12-27 18:27:57 -05:00
}
}
}