// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The audio behaviours. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Model.Audio { using System.ComponentModel.DataAnnotations; using HandBrake.ApplicationServices.Attributes; /// /// The audio behaviours. /// public enum AudioBehaviourModes { [Display(Name = "No Audio")] [ShortName("none")] None = 0, [Display(Name = "First Matching Selected Language")] [ShortName("first")] FirstMatch, [Display(Name = "All Matching Selected Languages")] [ShortName("all")] AllMatching, } }