/* PresetPictureSettingsMode.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace HandBrake.ApplicationServices.Model { using System.ComponentModel.DataAnnotations; /// /// Picture Settings Mode when adding presets /// public enum PresetPictureSettingsMode { [Display(Name = "None")] None, [Display(Name = "Custom")] Custom, [Display(Name = "Source Maximum")] SourceMaximum, } }