summaryrefslogtreecommitdiffstats
path: root/win/C#/HandBrake.ApplicationServices/Model/Job.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-01-09 14:37:29 +0000
committersr55 <[email protected]>2011-01-09 14:37:29 +0000
commit49c029031755e78e10cc4c0d004dc93d42714566 (patch)
treea1d88a51560ea03fdf03dd3da1179b95436f4365 /win/C#/HandBrake.ApplicationServices/Model/Job.cs
parent9f60eb35c21d513c6ce6b272e371a279b8a32ae5 (diff)
WinGui:
- Continuing on with the Application Services re-factoring: * Added new QueueManager - Manages queue jobs, add, remove, up, down, save, etc * Queue Processor - Processes a Queue * New Models (Encode Task + associated model objects) Used for storing jobs as an object rather than query. This code isn't used yet, that is coming later. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3738 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Model/Job.cs')
-rw-r--r--win/C#/HandBrake.ApplicationServices/Model/Job.cs55
1 files changed, 0 insertions, 55 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Model/Job.cs b/win/C#/HandBrake.ApplicationServices/Model/Job.cs
deleted file mode 100644
index 536069153..000000000
--- a/win/C#/HandBrake.ApplicationServices/Model/Job.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-/* 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.ApplicationServices.Model
-{
- /// <summary>
- /// The job.
- /// </summary>
- public class Job
- {
- /// <summary>
- /// Gets or sets the job ID.
- /// </summary>
- public int Id { get; set; }
-
- /// <summary>
- /// Gets or sets the selected Title.
- /// </summary>
- public int Title { get; set; }
-
- /// <summary>
- /// Gets or sets the query string.
- /// </summary>
- public string Query { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether if this is a user or GUI generated query
- /// </summary>
- public bool CustomQuery { get; set; }
-
- /// <summary>
- /// Gets or sets the source file of encoding.
- /// </summary>
- public string Source { get; set; }
-
- /// <summary>
- /// Gets or sets the destination for the file to be encoded.
- /// </summary>
- public string Destination { get; set; }
-
- /// <summary>
- /// Gets a value indicating whether or not this instance is empty.
- /// </summary>
- public bool IsEmpty
- {
- get
- {
- return this.Id == 0 && string.IsNullOrEmpty(this.Query) && string.IsNullOrEmpty(this.Source) &&
- string.IsNullOrEmpty(this.Destination);
- }
- }
- }
-} \ No newline at end of file