aboutsummaryrefslogtreecommitdiff
path: root/DvdLib/Ifo/Program.cs
blob: 9f62512706e22757ad3a849b2b16eb402edad927 (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 readonly List<Cell> Cells;

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