blob: 587bfb73f69f33c03d06325c2137d76f5c8c4095 (
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
25
26
27
28
29
30
31
|
/* QueueItem.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace Handbrake.EncodeQueue
{
public class QueueItem
{
/// <summary>
/// Get or Set the job id.
/// </summary>
public int Id { get; set; }
/// <summary>
/// Get or Set the query string.
/// </summary>
public string Query { get; set; }
/// <summary>
/// Get or set the source file of encoding
/// </summary>
public string Source { get; set; }
/// <summary>
/// Get or set the destination for the file to be encoded.
/// </summary>
public string Destination { get; set; }
}
}
|