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