jellyfin/MediaBrowser.Model/Querying/QueryFilters.cs

35 lines
865 B
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dto;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Querying
{
public class QueryFiltersLegacy
{
public string[] Genres { get; set; }
public string[] Tags { get; set; }
public string[] OfficialRatings { get; set; }
public int[] Years { get; set; }
public QueryFiltersLegacy()
{
2018-12-27 22:43:48 +01:00
Genres = Array.Empty<string>();
Tags = Array.Empty<string>();
OfficialRatings = Array.Empty<string>();
Years = Array.Empty<int>();
2018-12-28 00:27:57 +01:00
}
}
public class QueryFilters
{
public NameGuidPair[] Genres { get; set; }
public string[] Tags { get; set; }
public QueryFilters()
{
2018-12-27 22:43:48 +01:00
Tags = Array.Empty<string>();
Genres = Array.Empty<NameGuidPair>();
2018-12-28 00:27:57 +01:00
}
}
}