blob: e7a1da64ec9e4a34b37098eb25e6172f546748a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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; }
}
}
|