/* Preset.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.Presets { using System.Windows.Controls; /// /// A Preset /// public class Preset { /// /// Gets or sets the category which the preset resides under /// public string Category { get; set; } /// /// Gets or sets the preset name /// public string Name { get; set; } /// /// Gets or sets the preset query /// public string Query { get; set; } /// /// Gets or sets a value indicating whether to use picture Settings in presets. /// public bool PictureSettings { get; set; } /// /// Gets or sets The version number which associates this preset with a HB build /// public string Version { get; set; } } }