using System; using System.Collections.Generic; using System.Text; namespace Handbrake.Queue { public class QueueItem { private int id; private string query; private string source; private string destination; /// /// Get or Set the job id. /// public int Id { get { return id; } set { this.id = value; } } /// /// Get or Set the query string. /// public string Query { get { return query; } set { this.query = value; } } /// /// Get or set the source file of encoding /// public string Source { get { return source; } set { this.source = value; } } /// /// Get or set the destination for the file to be encoded. /// public string Destination { get { return destination; } set { this.destination = value; } } } }