// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// Picture Settings Mode when adding presets
//
// --------------------------------------------------------------------------------------------------------------------
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,
}
}