using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DvdLib.Ifo { public class Program { public readonly List<Cell> Cells; public Program(List<Cell> cells) { Cells = cells; } } }