18 lines
283 B
C#
18 lines
283 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace DvdLib.Ifo
|
|||
|
{
|
|||
|
public class Program
|
|||
|
{
|
|||
|
public readonly List<Cell> Cells;
|
|||
|
|
|||
|
public Program(List<Cell> cells)
|
|||
|
{
|
|||
|
Cells = cells;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|