mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Model.Entities;
 | |
| using MediaBrowser.Model.Querying;
 | |
| 
 | |
| namespace MediaBrowser.Model.Channels
 | |
| {
 | |
|     public class ChannelItemQuery
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the channel identifier.
 | |
|         /// </summary>
 | |
|         /// <value>The channel identifier.</value>
 | |
|         public string ChannelId { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the category identifier.
 | |
|         /// </summary>
 | |
|         /// <value>The category identifier.</value>
 | |
|         public string FolderId { 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; }
 | |
| 
 | |
|         public SortOrder? SortOrder { get; set; }
 | |
|         public string[] SortBy { get; set; }
 | |
|         public ItemFilter[] Filters { get; set; }
 | |
|         public ItemFields[] Fields { get; set; }
 | |
| 
 | |
|         public ChannelItemQuery()
 | |
|         {
 | |
|             Filters = new ItemFilter[] { };
 | |
|             SortBy = new string[] { };
 | |
|             Fields = new ItemFields[] { };
 | |
|         }
 | |
|     }
 | |
| 
 | |
| } |