From c1f270b152db7a124b4664277c22996115836f81 Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 3 Dec 2011 20:42:25 +0000 Subject: WinGui: (WPF) Further work hooking up the new main window. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4372 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../Model/Encoding/ChapterMarker.cs | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 win/CS/HandBrake.ApplicationServices/Model/Encoding/ChapterMarker.cs (limited to 'win/CS/HandBrake.ApplicationServices/Model/Encoding') diff --git a/win/CS/HandBrake.ApplicationServices/Model/Encoding/ChapterMarker.cs b/win/CS/HandBrake.ApplicationServices/Model/Encoding/ChapterMarker.cs new file mode 100644 index 000000000..8fb1a5920 --- /dev/null +++ b/win/CS/HandBrake.ApplicationServices/Model/Encoding/ChapterMarker.cs @@ -0,0 +1,45 @@ +/* ChapterMarker.cs $ + This file is part of the HandBrake source code. + Homepage: . + It may be used under the terms of the GNU General Public License. */ + +namespace HandBrake.ApplicationServices.Model.Encoding +{ + /// + /// A Movie Chapter + /// + public class ChapterMarker + { + /// + /// Initializes a new instance of the class. + /// + public ChapterMarker() + { + } + + /// + /// Initializes a new instance of the class. + /// + /// + /// The number. + /// + /// + /// The name. + /// + public ChapterMarker(int number, string Name) + { + this.ChapterName = Name; + this.ChapterNumber = number; + } + + /// + /// Gets or sets The number of this Chapter, in regards to it's parent Title + /// + public int ChapterNumber { get; set; } + + /// + /// Gets or sets ChapterName. + /// + public string ChapterName { get; set; } + } +} -- cgit v1.2.3