// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The search. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { /// /// The search. /// public class SubtitleSearch { /// /// Gets or sets a value indicating whether burn. /// public bool Burn { get; set; } /// /// Gets or sets a value indicating whether default. /// public bool Default { get; set; } /// /// Gets or sets a value indicating whether enable. /// public bool Enable { get; set; } /// /// Gets or sets a value indicating whether forced. /// public bool Forced { get; set; } } }