/* 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. */ using System; namespace Handbrake.Presets { public class Preset { /// /// Get or Set the preset's level. This indicated if it is a root or child node /// public int Level { get; set; } /// /// Get or Set the category which the preset resides under /// public string Category { get; set; } /// /// Get or Set the top level category for the preset. /// public string TopCategory { 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 Boolean PictureSettings { get; set; } /// /// The version number which associates this preset with a HB build /// public string Version { get; set; } } }