// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Subtitles type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.Interop.Model { using System.Collections.Generic; /// /// The subtitles. /// public class Subtitles { /// /// Gets or sets the source subtitles. /// public List SourceSubtitles { get; set; } /// /// Gets or sets the srt subtitles. /// public List SrtSubtitles { get; set; } } }