Program.cs 268 B

12345678910111213141516
  1. #pragma warning disable CS1591
  2. using System.Collections.Generic;
  3. namespace DvdLib.Ifo
  4. {
  5. public class Program
  6. {
  7. public IReadOnlyList<Cell> Cells { get; }
  8. public Program(List<Cell> cells)
  9. {
  10. Cells = cells;
  11. }
  12. }
  13. }