#pragma warning disable CS1591 using System.Collections.Generic; namespace DvdLib.Ifo { public class Program { public IReadOnlyList Cells { get; } public Program(List cells) { Cells = cells; } } }