//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#nullable disable
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.Querying
{
public class QueryFilters
{
public QueryFilters()
{
Tags = Array.Empty();
Genres = Array.Empty();
}
public NameGuidPair[] Genres { get; set; }
public string[] Tags { get; set; }
}
}