summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/EventArgs/SettingChangedEventArgs.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-03-01 18:03:28 +0000
committersr55 <[email protected]>2015-03-01 18:03:28 +0000
commit29c62be71227ae33e382199f323890ae3bfffa69 (patch)
treece95739341715439b97d7ca1b4baebd89474c6c9 /win/CS/HandBrakeWPF/EventArgs/SettingChangedEventArgs.cs
parent5cce72f890bc7b6075a55aa4364b8817c22f11c0 (diff)
WinGui: Moving the Queue Code out to the UI level. The services library will be strictly a libhb warpper and service provider.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6959 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/EventArgs/SettingChangedEventArgs.cs')
-rw-r--r--win/CS/HandBrakeWPF/EventArgs/SettingChangedEventArgs.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/EventArgs/SettingChangedEventArgs.cs b/win/CS/HandBrakeWPF/EventArgs/SettingChangedEventArgs.cs
new file mode 100644
index 000000000..edd27b11c
--- /dev/null
+++ b/win/CS/HandBrakeWPF/EventArgs/SettingChangedEventArgs.cs
@@ -0,0 +1,27 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="SettingChangedEventArgs.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// The setting changed event args.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.EventArgs
+{
+ /// <summary>
+ /// The setting changed event args.
+ /// </summary>
+ public class SettingChangedEventArgs
+ {
+ /// <summary>
+ /// Gets or sets the key.
+ /// </summary>
+ public string Key { get; set; }
+
+ /// <summary>
+ /// Gets or sets the value.
+ /// </summary>
+ public object Value { get; set; }
+ }
+}