mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			424 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			424 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Model.Channels;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Channels
 | |
| {
 | |
|     public class InternalChannelItemQuery
 | |
|     {
 | |
|         public string FolderId { get; set; }
 | |
| 
 | |
|         public string UserId { get; set; }
 | |
| 
 | |
|         public int? StartIndex { get; set; }
 | |
| 
 | |
|         public int? Limit { get; set; }
 | |
| 
 | |
|         public ChannelItemSortField? SortBy { get; set; }
 | |
| 
 | |
|         public bool SortDescending { get; set; }
 | |
|     }
 | |
| } |