mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			506 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			506 B
		
	
	
	
		
			C#
		
	
	
	
	
	
 | 
						|
namespace MediaBrowser.Model.Sync
 | 
						|
{
 | 
						|
    public class LocalItemQuery
 | 
						|
    {
 | 
						|
        public string ServerId { get; set; }
 | 
						|
        public string AlbumArtistId { get; set; }
 | 
						|
        public string AlbumId { get; set; }
 | 
						|
        public string SeriesId { get; set; }
 | 
						|
        public string Type { get; set; }
 | 
						|
        public string MediaType { get; set; }
 | 
						|
        public string[] ExcludeTypes { get; set; }
 | 
						|
 | 
						|
        public LocalItemQuery()
 | 
						|
        {
 | 
						|
            ExcludeTypes = new string[] { };
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |