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
|
|
|
|
{
|
2020-05-25 21:52:51 +00:00
|
|
|
public IReadOnlyList<Cell> Cells { get; }
|
2016-10-26 19:29:56 +00:00
|
|
|
|
|
|
|
public Program(List<Cell> cells)
|
|
|
|
{
|
|
|
|
Cells = cells;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|