using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.IO; using System.Text.RegularExpressions; using System.Diagnostics; namespace Handbrake.Presets { public class Preset { private int level = 0; private string category = null; private string name; private string query; private Boolean pictureSettings; /// /// Get or Set the preset's level. This indicated if it is a root or child node /// public int Level { get { return level; } set { this.level = value; } } /// /// Get or Set the category which the preset resides under /// public string Category { get { return category; } set { this.category = value; } } /// /// Get or Set the preset name /// public string Name { get { return name; } set { this.name = value; } } /// /// Get or set the preset query /// public string Query { get { return query; } set { this.query = value; } } /// /// Get or set the usage of Picture Settings in presets. /// public Boolean PictureSettings { get { return pictureSettings; } set { this.pictureSettings = value; } } } }