summaryrefslogtreecommitdiffstats
path: root/win/C#/CLI/Jobs/Job.cs
blob: f1c02c352f84a2ea877e0fc81905512c8fc5ebe0 (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
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;

namespace Handbrake.CLI.Jobs
{
    public class Job
    {
        private string m_exec;

        private Process m_proc;
        /// <summary>
        /// The base process associated with this job
        /// </summary>
        public Process Process
        {
            get
            {
                return this.m_proc;
            }
        }

        public Job()
        {
        }
    }
}