// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // The setting changed event args. // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.EventArgs { /// /// The setting changed event args. /// public class SettingChangedEventArgs { /// /// Gets or sets the key. /// public string Key { get; set; } /// /// Gets or sets the value. /// public object Value { get; set; } } }