// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The a chapter from a video source. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Scan { /// /// The a chapter from a video source. /// public class SourceChapter { /// /// Gets or sets the duration. /// public Duration Duration { get; set; } /// /// Gets or sets the name. /// public string Name { get; set; } } }