mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			268 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			268 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System.Collections.Generic;
 | 
						|
 | 
						|
namespace DvdLib.Ifo
 | 
						|
{
 | 
						|
    public class Program
 | 
						|
    {
 | 
						|
        public IReadOnlyList<Cell> Cells { get; }
 | 
						|
 | 
						|
        public Program(List<Cell> cells)
 | 
						|
        {
 | 
						|
            Cells = cells;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |