// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The preset category. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Presets { using System.Collections.Generic; /// /// The preset category. /// public class PresetCategory { /// /// Gets or sets the children array. /// public List ChildrenArray { get; set; } /// /// Gets or sets a value indicating whether folder. /// public bool Folder { get; set; } /// /// Gets or sets the preset name. /// public string PresetName { get; set; } /// /// Gets or sets the type. /// public int Type { get; set; } } }