// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The subtitle. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { using System.Collections.Generic; /// /// The subtitle. /// public class Subtitles { /// /// Gets or sets the search. /// public SubtitleSearch Search { get; set; } /// /// Gets or sets the subtitle list. /// public List SubtitleList { get; set; } } }