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 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; } } }