diff options
Diffstat (limited to 'win/C#/Queue/QueueItem.cs')
-rw-r--r-- | win/C#/Queue/QueueItem.cs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/win/C#/Queue/QueueItem.cs b/win/C#/Queue/QueueItem.cs deleted file mode 100644 index 386fef239..000000000 --- a/win/C#/Queue/QueueItem.cs +++ /dev/null @@ -1,31 +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.Queue
-{
- public class QueueItem
- {
- /// <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 |