26 lines
559 B
C#
26 lines
559 B
C#
// <copyright file="QueryFilters.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#nullable disable
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
namespace MediaBrowser.Model.Querying
|
|
{
|
|
public class QueryFilters
|
|
{
|
|
public QueryFilters()
|
|
{
|
|
Tags = Array.Empty<string>();
|
|
Genres = Array.Empty<NameGuidPair>();
|
|
}
|
|
|
|
public NameGuidPair[] Genres { get; set; }
|
|
|
|
public string[] Tags { get; set; }
|
|
}
|
|
}
|