Program.cs 283 B

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