// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The hb mixdown. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { /// /// The hb mixdown. /// public class HBMixdown { /// /// Initializes a new instance of the class. /// /// /// The display name. /// /// /// The id. /// /// /// The short name. /// public HBMixdown(string displayName, int id, string shortName) { this.DisplayName = displayName; this.Id = id; this.ShortName = shortName; } /// /// Gets the display name. /// public string DisplayName { get; private set; } /// /// Gets the id. /// public int Id { get; private set; } /// /// Gets the short name. /// public string ShortName { get; private set; } } }