diff options
| author | David <daullmer@gmail.com> | 2020-06-14 12:48:17 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-06-14 12:48:17 +0200 |
| commit | 9bedd9ac3ca5b5854acd6891e746bf2e7225ff21 (patch) | |
| tree | 5c30410be03df839661582cfe615538656149363 /DvdLib/Ifo/Program.cs | |
| parent | 043d76bd6e9e4a2e1093ae0e5ba025de1438b528 (diff) | |
| parent | 0011e8df47380936742302ef40639a4626a780ed (diff) | |
Merge remote-tracking branch 'upstream/api-migration' into api-204
Diffstat (limited to 'DvdLib/Ifo/Program.cs')
| -rw-r--r-- | DvdLib/Ifo/Program.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/DvdLib/Ifo/Program.cs b/DvdLib/Ifo/Program.cs index af08afa35..3d94fa7dc 100644 --- a/DvdLib/Ifo/Program.cs +++ b/DvdLib/Ifo/Program.cs @@ -1,10 +1,12 @@ +#pragma warning disable CS1591 + using System.Collections.Generic; namespace DvdLib.Ifo { public class Program { - public readonly List<Cell> Cells; + public IReadOnlyList<Cell> Cells { get; } public Program(List<Cell> cells) { |
