// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Defines the Container type. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Model.Encoding { using System; using System.ComponentModel.DataAnnotations; /// /// The container. /// [Flags] public enum Container { None = 0x0, [Display(Name = "MP4")] MP4, [Display(Name = "MKV")] MKV } }