mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			401 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			401 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Channels
 | 
						|
{
 | 
						|
    public class ChannelItemResult
 | 
						|
    {
 | 
						|
        public ChannelItemResult()
 | 
						|
        {
 | 
						|
            Items = Array.Empty<ChannelItemInfo>();
 | 
						|
        }
 | 
						|
 | 
						|
        public IReadOnlyList<ChannelItemInfo> Items { get; set; }
 | 
						|
 | 
						|
        public int? TotalRecordCount { get; set; }
 | 
						|
    }
 | 
						|
}
 |