namespace Handbrake.Queue
{
public class QueueItem
{
///
/// Get or Set the job id.
///
public int Id { get; set; }
///
/// Get or Set the query string.
///
public string Query { get; set; }
///
/// Get or set the source file of encoding
///
public string Source { get; set; }
///
/// Get or set the destination for the file to be encoded.
///
public string Destination { get; set; }
}
}