mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 02:27:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			375 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #pragma warning disable CS1591
 | |
| 
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Channels
 | |
| {
 | |
|     public class ChannelItemResult
 | |
|     {
 | |
|         public List<ChannelItemInfo> Items { get; set; }
 | |
| 
 | |
|         public int? TotalRecordCount { get; set; }
 | |
| 
 | |
|         public ChannelItemResult()
 | |
|         {
 | |
|             Items = new List<ChannelItemInfo>();
 | |
|         }
 | |
|     }
 | |
| }
 |