blob: e71e308c4658eb4b4b72666a0dfa9203abc6c9f8 (
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
|
namespace Handbrake.Queue
{
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; }
}
}
|