diff options
| author | Patrick Barron <barronpm@gmail.com> | 2023-01-20 07:29:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-20 13:29:45 +0100 |
| commit | db1913b08fac0749133634efebd1ee7a7876147a (patch) | |
| tree | a33ab9c840b4ed48f95cf5c833204bcc64a93314 /DvdLib/Ifo/Chapter.cs | |
| parent | e448797df06c1b3d645349ac65ab142e3785caae (diff) | |
Remove DvdLib (#9068)
* Remove DvdLib
* Update error message for blu-ray folders
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
* Remove BDInfo
* Remove MediaEncoder.GetPrimaryPlaylistVobFiles
* Remove BlurayDiscInfo
Co-authored-by: Shadowghost <Shadowghost@users.noreply.github.com>
Diffstat (limited to 'DvdLib/Ifo/Chapter.cs')
| -rw-r--r-- | DvdLib/Ifo/Chapter.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/DvdLib/Ifo/Chapter.cs b/DvdLib/Ifo/Chapter.cs deleted file mode 100644 index e786cb553..000000000 --- a/DvdLib/Ifo/Chapter.cs +++ /dev/null @@ -1,20 +0,0 @@ -#pragma warning disable CS1591 - -namespace DvdLib.Ifo -{ - public class Chapter - { - public ushort ProgramChainNumber { get; private set; } - - public ushort ProgramNumber { get; private set; } - - public uint ChapterNumber { get; private set; } - - public Chapter(ushort pgcNum, ushort programNum, uint chapterNum) - { - ProgramChainNumber = pgcNum; - ProgramNumber = programNum; - ChapterNumber = chapterNum; - } - } -} |
