// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the HBPresetTune type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { /// /// The hb preset tune. /// public class HBPresetTune { /// /// Initializes a new instance of the class. /// /// /// The name. /// /// /// The short Name. /// public HBPresetTune(string name, string shortName) { this.Name = name; this.ShortName = shortName; } /// /// Gets the name. /// public string Name { get; private set; } /// /// Gets the short name. /// public string ShortName { get; private set; } } }