/* QueueItem.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake.EncodeQueue { public class Job { /// /// 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; } } }