jellyfin/DvdLib/Ifo/Program.cs

17 lines
268 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
namespace DvdLib.Ifo
{
public class Program
{
2020-05-25 17:52:51 -04:00
public IReadOnlyList<Cell> Cells { get; }
public Program(List<Cell> cells)
{
Cells = cells;
}
}
}