/// <summary>
 /// Initializes a new instance of the <see cref="ChapterMarker"/> class.
 /// Copy Constructor
 /// </summary>
 /// <param name="chapter">
 /// The chapter.
 /// </param>
 public ChapterMarker(ChapterMarker chapter)
 {
     this.ChapterName   = chapter.ChapterName;
     this.ChapterNumber = chapter.ChapterNumber;
     this.Duration      = chapter.Duration;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ChapterMarker"/> class.
 /// Copy Constructor
 /// </summary>
 /// <param name="chapter">
 /// The chapter.
 /// </param>
 public ChapterMarker(ChapterMarker chapter)
 {
     this.ChapterName = chapter.ChapterName;
     this.ChapterNumber = chapter.ChapterNumber;
     this.Duration = chapter.Duration;
 }