summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/Interop/Json/Queue/Task.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Json/Queue/Task.cs')
-rw-r--r--win/CS/HandBrake.Interop/Interop/Json/Queue/Task.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Queue/Task.cs b/win/CS/HandBrake.Interop/Interop/Json/Queue/Task.cs
new file mode 100644
index 000000000..e7a1da64e
--- /dev/null
+++ b/win/CS/HandBrake.Interop/Interop/Json/Queue/Task.cs
@@ -0,0 +1,24 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="Task.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 task.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.Interop.Interop.Json.Queue
+{
+ using HandBrake.Interop.Interop.Json.Encode;
+
+ /// <summary>
+ /// The task.
+ /// </summary>
+ public class Task
+ {
+ /// <summary>
+ /// Gets or sets the job.
+ /// </summary>
+ public JsonEncodeObject Job { get; set; }
+ }
+}