aboutsummaryrefslogtreecommitdiff
path: root/DvdLib/Ifo/Program.cs
blob: 3d94fa7dc156b7451c4536b8e80ccbd2c5aa8059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma warning disable CS1591

using System.Collections.Generic;

namespace DvdLib.Ifo
{
    public class Program
    {
        public IReadOnlyList<Cell> Cells { get; }

        public Program(List<Cell> cells)
        {
            Cells = cells;
        }
    }
}