// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// An object representing a Chapter aosciated with a Title, in a DVD
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.SourceData
{
using System;
///
/// An object representing a Chapter aosciated with a Title, in a DVD
///
public class Chapter
{
///
/// The number of this Chapter, in regards to its parent Title
///
public int ChapterNumber { get; set; }
///
/// The length in time this Chapter spans
///
public TimeSpan Duration { get; set; }
///
/// Override of the ToString method to make this object easier to use in the UI
///
/// A string formatted as: {chapter #}
public override string ToString()
{
return this.ChapterNumber.ToString();
}
}
}