2020-04-21 08:33:41 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System.Collections.Generic;
|
2016-10-26 19:29:56 +00:00
|
|
|
|
|
|
|
namespace DvdLib.Ifo
|
|
|
|
{
|
|
|
|
public class Program
|
|
|
|
{
|
|
|
|
public readonly List<Cell> Cells;
|
|
|
|
|
|
|
|
public Program(List<Cell> cells)
|
|
|
|
{
|
|
|
|
Cells = cells;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|