jellyfin/MediaBrowser.Model/Querying/QueryFilters.cs

22 lines
417 B
C#
Raw Normal View History

#nullable disable
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 QueryFilters
2018-12-28 00:27:57 +01:00
{
public QueryFilters()
2018-12-28 00:27:57 +01:00
{
2018-12-27 22:43:48 +01:00
Tags = Array.Empty<string>();
Genres = Array.Empty<NameGuidPair>();
2018-12-28 00:27:57 +01:00
}
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public NameGuidPair[] Genres { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string[] Tags { get; set; }
}
}