jellyfin/DvdLib/Ifo/Program.cs

15 lines
231 B
C#
Raw Normal View History

2019-01-13 14:15:33 -05:00
using System.Collections.Generic;
namespace DvdLib.Ifo
{
public class Program
{
public readonly List<Cell> Cells;
public Program(List<Cell> cells)
{
Cells = cells;
}
}
}