mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			417 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			417 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#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; }
 | 
						|
    }
 | 
						|
}
 |