// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the PresetTune type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Filters { /// /// The preset tune. /// public class PresetTune { /// /// Gets or sets the name. /// public string Name { get; set; } /// /// Gets or sets the short name. /// public string Short_Name { get; set; } } }