Program.cs 228 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace DvdLib.Ifo
  3. {
  4. public class Program
  5. {
  6. public readonly List<Cell> Cells;
  7. public Program(List<Cell> cells)
  8. {
  9. Cells = cells;
  10. }
  11. }
  12. }