// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The filter list. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrake.ApplicationServices.Interop.Json.Encode { using Newtonsoft.Json.Linq; /// /// The filter list. /// public class Filter { /// /// Gets or sets the id. /// public int ID { get; set; } /// /// Gets or sets the settings. /// public JToken Settings { get; set; } } }