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