aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UpdateService/Web.config
blob: 32a2460dfda32f054f8b20114a982166d5e2bd79 (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
4
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;

namespace Tango.PPC.Jobs.NavigationObjects
{
    /// <summary>
    /// Represents a job navigation object.
    /// </summary>
    public class JobNavigationObject
    {
        /// <summary>
        /// Gets or sets the job.
        /// </summary>
        public Job Job { get; set; }

        /// <summary>
        /// Gets or sets the navigation intent.
        /// </summary>
        public JobNavigationIntent Intent { get; set; }
    }

    /// <summary>
    /// Represents different job navigation intents.
    /// </summary>
    public enum JobNavigationIntent
    {
        Default,
        NewJob,
        SampleDye,
        FineTuning,
    }
}