// -------------------------------------------------------------------------------------------------------------------- // // 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.Interop.Model.Encoding { /// /// The hb container. /// public class HBContainer { #region Public Properties /// /// Gets or sets the default extension. /// public string DefaultExtension { get; set; } /// /// Gets or sets the display name. /// public string DisplayName { get; set; } /// /// Gets or sets the id. /// public int Id { get; set; } /// /// Gets or sets the short name. /// public string ShortName { get; set; } #endregion } }