aboutsummaryrefslogtreecommitdiff
path: root/DvdLib/Ifo/Program.cs
blob: 48870d9dd0a0a16e73511e9f844c05cf7b385a30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
        }
    }
}