// --------------------------------------------------------------------------------------------------------------------
//
// 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 = 0,
[Display(Name = "Custom")]
Custom = 1,
[Display(Name = "Source Max Size")]
SourceMaximum = 2,
}
}