summaryrefslogtreecommitdiffstats
path: root/win/C#/Queue/QueueItem.cs
blob: 1639b168be389892c335add04f213899099e7cc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;

        /// <summary>
        /// Get or Set the job id.
        /// </summary>
        public int Id
        {
            get { return id; }
            set { this.id = value; }
        }

        /// <summary>
        /// Get or Set the query string.
        /// </summary>
        public string Query
        {
            get { return query; }
            set { this.query = value; }
        }

        /// <summary>
        /// Get or set the source file of encoding
        /// </summary>
        public string Source
        {
            get { return source; }
            set { this.source = value; }
        }

        /// <summary>
        /// Get or set the destination for the file to be encoded.
        /// </summary>
        public string Destination
        {
            get { return destination; }
            set { this.destination = value; }
        }
    }
}