jellyfin/DvdLib/Ifo/Program.cs
2016-10-26 15:29:56 -04:00

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;
}
}
}