diff options
author | sr55 <[email protected]> | 2009-06-15 14:56:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-06-15 14:56:23 +0000 |
commit | 24780596a9e62e823d619792445a784094f904a2 (patch) | |
tree | 79909eb55db5bf00acd2466a32d7da343949d8f5 /win/C#/EncodeQueue/Job.cs | |
parent | b023bb532c17e1284230172b660baa32b5750318 (diff) |
WinGui:
- Picture Settings: Height of 0 allows for no -l to be passed to the CLI
- Picture Settings / pre-sets now set 0 when no Height specified. Prevents the panel from using incorrect values when pre-sets are selected.
- Simplified the Encode.cs set-up. Includes changes to QueueHandler
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2534 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/EncodeQueue/Job.cs')
-rw-r--r-- | win/C#/EncodeQueue/Job.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/win/C#/EncodeQueue/Job.cs b/win/C#/EncodeQueue/Job.cs new file mode 100644 index 000000000..291ef400d --- /dev/null +++ b/win/C#/EncodeQueue/Job.cs @@ -0,0 +1,31 @@ +/* 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.EncodeQueue
+{
+ public class Job
+ {
+ /// <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; }
+ }
+}
\ No newline at end of file |