mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using MediaBrowser.Model.Entities;
 | |
| using MediaBrowser.Model.Querying;
 | |
| 
 | |
| namespace MediaBrowser.Model.Channels
 | |
| {
 | |
|     public class AllChannelMediaQuery
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the channel ids.
 | |
|         /// </summary>
 | |
|         /// <value>The channel ids.</value>
 | |
|         public string[] ChannelIds { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the user identifier.
 | |
|         /// </summary>
 | |
|         /// <value>The user identifier.</value>
 | |
|         public string UserId { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Skips over a given number of items within the results. Use for paging.
 | |
|         /// </summary>
 | |
|         /// <value>The start index.</value>
 | |
|         public int? StartIndex { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// The maximum number of items to return
 | |
|         /// </summary>
 | |
|         /// <value>The limit.</value>
 | |
|         public int? Limit { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the content types.
 | |
|         /// </summary>
 | |
|         /// <value>The content types.</value>
 | |
|         public ChannelMediaContentType[] ContentTypes { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the extra types.
 | |
|         /// </summary>
 | |
|         /// <value>The extra types.</value>
 | |
|         public ExtraType[] ExtraTypes { get; set; }
 | |
|         public TrailerType[] TrailerTypes { get; set; }
 | |
|      
 | |
|         public AllChannelMediaQuery()
 | |
|         {
 | |
|             ChannelIds = new string[] { };
 | |
| 
 | |
|             ContentTypes = new ChannelMediaContentType[] { };
 | |
|             ExtraTypes = new ExtraType[] { };
 | |
|             TrailerTypes = new TrailerType[] { };
 | |
| 
 | |
|             Filters = new ItemFilter[] { };
 | |
|             Fields = new List<ItemFields>();
 | |
|         }
 | |
| 
 | |
|         public ItemFilter[] Filters { get; set; }
 | |
|         public List<ItemFields> Fields { get; set; }
 | |
|     }
 | |
| } |