// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The hb container. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { /// /// The hb container. /// public class HBContainer { /// /// Initializes a new instance of the class. /// /// /// The default extension. /// /// /// The display name. /// /// /// The id. /// /// /// The short name. /// public HBContainer(string defaultExtension, string displayName, int id, string shortName) { this.DefaultExtension = defaultExtension; this.DisplayName = displayName; this.Id = id; this.ShortName = shortName; } /// /// Gets the default extension. /// public string DefaultExtension { get; private set; } /// /// 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; } } }