/* 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; public class Preset { /// /// Get or Set the category which the preset resides under /// public string Category { get; set; } /// /// Get or Set the preset name /// public string Name { get; set; } /// /// Get or set the preset query /// public string Query { get; set; } /// /// Get or set the usage of Picture Settings in presets. /// public bool PictureSettings { get; set; } /// /// The version number which associates this preset with a HB build /// public string Version { get; set; } } }